added report cache

This commit is contained in:
denisdulici
2020-01-25 13:36:57 +03:00
parent b92d0aa9cd
commit daf46b843a
5 changed files with 43 additions and 13 deletions

View File

@ -37,6 +37,7 @@ Route::group(['prefix' => 'common'], function () {
Route::get('reports/{report}/print', 'Common\Reports@print')->name('reports.print');
Route::get('reports/{report}/export', 'Common\Reports@export')->name('reports.export');
Route::get('reports/clear', 'Common\Reports@clear')->name('reports.clear');
Route::get('reports/fields', 'Common\Reports@fields')->name('reports.fields');
Route::resource('reports', 'Common\Reports');
});