Dashboard report

This commit is contained in:
Kawlll Maxso
2019-03-19 18:45:39 +08:00
parent 0e117b2440
commit ac1353c5a1
14 changed files with 546 additions and 32 deletions
+6 -1
View File
@@ -133,7 +133,12 @@ Route::group(['middleware' => 'api', 'prefix' => 'v1', 'as' => 'api.'], function
});
Route::group(['prefix' => 'report', 'as' => 'report.', 'namespace' => 'Dashboard'], function () {
Route::get('/order', 'OrdersReportController@index')->name('order');
Route::get('/cbm', 'CbmReportController@index')->name('cbm');
Route::get('/customer', 'ActiveCustomerReportController@index')->name('customer');
Route::get('/order/status', 'OrdersStatusReportController@index')->name('order.status');
});