123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- $router->group(function () use ($router){
-
- $router->post('vehicle/importVehicle', '\catchAdmin\yunying\controller\Vehicle@importVehicle');
- $router->resource('vehicle', '\catchAdmin\yunying\controller\Vehicle');
-
-
- $router->post('export_vehicle', '\catchAdmin\yunying\controller\Vehicle@export_vehicle');
-
- $router->resource('vehicle_photo', '\catchAdmin\yunying\controller\VehiclePhoto');
-
- $router->resource('stolen_vehicle', '\catchAdmin\yunying\controller\StolenVehicle');
-
- $router->resource('vehicle_brand', '\catchAdmin\yunying\controller\VehicleBrand');
-
- $router->resource('vehicle_color', '\catchAdmin\yunying\controller\VehicleColor');
-
- $router->resource('insurance', '\catchAdmin\yunying\controller\Insurance');
-
- $router->resource('insureRecords', '\catchAdmin\yunying\controller\InsureRecords');
-
- $router->resource('keyPersonnel', '\catchAdmin\yunying\controller\KeyPersonnel');
- $router->post('keyPersonnel/importExcel', '\catchAdmin\yunying\controller\KeyPersonnel@importExcel');
-
- })->middleware('auth');
|