route.php 1.4 KB

12345678910111213141516171819202122232425262728
  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. // configLog路由
  14. $router->resource('configLog', '\catchAdmin\logs\controller\ConfigLog');
  15. // dwLog路由
  16. $router->resource('dwLog', '\catchAdmin\logs\controller\DwLog');
  17. // wxPushResultLog路由
  18. $router->resource('wxPushResultLog', '\catchAdmin\logs\controller\WxPushResultLog');
  19. // heartBeat路由
  20. $router->resource('heartBeat', '\catchAdmin\logs\controller\HeartBeat');
  21. // batteryLog路由
  22. $router->resource('batteryLog', '\catchAdmin\logs\controller\BatteryLog');
  23. // maintainLog路由
  24. $router->resource('maintainLog', '\catchAdmin\logs\controller\MaintainLog');
  25. // wrenchCheckLog路由
  26. $router->resource('wrenchCheckLog', '\catchAdmin\logs\controller\WrenchCheckLog');
  27. })->middleware('auth');