large changes

This commit is contained in:
Omair Saleh
2019-03-19 19:14:13 +08:00
parent b849ca5011
commit d94eaee693
+1 -1
View File
@@ -136,7 +136,7 @@ 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('/customer', 'CustomerReportController@index')->name('customer');
Route::get('/order/status', 'OrdersStatusReportController@index')->name('order.status');
});