create blade excel files

This commit is contained in:
2025-02-24 09:53:36 +03:30
parent a537a19faa
commit baab9196d7
11 changed files with 503 additions and 106 deletions

View File

@@ -270,8 +270,8 @@ Route::prefix('receipt_reports')
->name('receiptReports.')
->controller(AccidentReceiptReportController::class)
->group(function () {
Route::get('/country_report', 'countryReport')->name('countryReport');
Route::get('/province_report', 'provinceReport')->name('provinceReport');
Route::get('/city_report', 'cityReport')->name('cityReport');
Route::get('/country_excel_report', 'countryExcelReport')->name('countryExcelReport');
Route::get('/province_excel_report', 'provinceExcelReport')->name('provinceExcelReport');
Route::get('/city_excel_report', 'cityExcelReport')->name('cityExcelReport');
});