mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-19 04:24:12 +00:00
18 lines
863 B
PHP
18 lines
863 B
PHP
<?php
|
|
|
|
use App\Http\Controllers\Reports\MonthlyReportController;
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::group(['prefix' => 'report', 'as' => 'report.'], function () {
|
|
Route::get('/customer/{marking}/{from?}/{to?}', [MonthlyReportController::class, 'customerReport'])->name('customer');
|
|
|
|
Route::get('/sales/{from?}/{to?}', [MonthlyReportController::class, 'salesReport'])->name('sales');
|
|
|
|
Route::get('/profit/{model}/{value}/{from?}/{to?}', [MonthlyReportController::class, 'profitModelReport'])->name('profit');
|
|
|
|
Route::get('/service', [MonthlyReportController::class, 'serviceReport'])->name('service');
|
|
Route::get('/service/job', [MonthlyReportController::class, 'serviceReportJob'])->name('service.job');
|
|
|
|
Route::get('/customers/active', [MonthlyReportController::class, 'customerActivityReport'])->name('customerActivity');
|
|
});
|