route.php 1.6 KB

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CatchAdmin [Just Like ~ ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2017~{$year} http://catchadmin.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
  8. // +----------------------------------------------------------------------
  9. // | Author: JaguarJack [ njphper@gmail.com ]
  10. // +----------------------------------------------------------------------
  11. // you should use `$router`
  12. $router->group(function () use ($router){
  13. // vehicle路由
  14. $router->get('vehicle/getVehicleList','\catchAdmin\yunying\controller\Vehicle@getVehicleListOracle');
  15. $router->resource('vehicle', '\catchAdmin\yunying\controller\Vehicle');
  16. // 导出车辆
  17. $router->post('export_vehicle', '\catchAdmin\yunying\controller\Vehicle@export_vehicle');
  18. // vehicle_photo路由
  19. $router->resource('vehicle_photo', '\catchAdmin\yunying\controller\VehiclePhoto');
  20. // stolen_vehicle路由
  21. $router->resource('stolen_vehicle', '\catchAdmin\yunying\controller\StolenVehicle');
  22. // vehicle_brand路由
  23. $router->resource('vehicle_brand', '\catchAdmin\yunying\controller\VehicleBrand');
  24. // vehicle_color路由
  25. $router->resource('vehicle_color', '\catchAdmin\yunying\controller\VehicleColor');
  26. // insurance路由
  27. $router->resource('insurance', '\catchAdmin\yunying\controller\Insurance');
  28. // insureRecords路由
  29. $router->resource('insureRecords', '\catchAdmin\yunying\controller\InsureRecords');
  30. })->middleware('auth');