route.php 1.4 KB

123456789101112131415161718192021222324
  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. $router->get('fences/getSchoolFenceList', '\catchAdmin\fences\controller\Fences@getSchoolFenceList');
  14. $router->get('fences/getKqFenceList', '\catchAdmin\fences\controller\Fences@getKqFenceList');
  15. // fences路由
  16. $router->resource('fences', '\catchAdmin\fences\controller\Fences');
  17. $router->post('fences/saveSchoolFence', '\catchAdmin\fences\controller\Fences@saveSchoolFence');
  18. $router->post('fences/saveKqFence', '\catchAdmin\fences\controller\Fences@saveKqFence');
  19. $router->put('fences/editSchoolFence/<id>', '\catchAdmin\fences\controller\Fences@editSchoolFence');
  20. $router->put('fences/editKqFence/<id>', '\catchAdmin\fences\controller\Fences@editKqFence');
  21. })->middleware('auth');