route.php 1.1 KB

1234567891011121314151617181920
  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. // wind路由
  14. $router->get('wind/getWindList', '\catchAdmin\wind\controller\Wind@getWindList');
  15. $router->get('wind/getWindOptions', '\catchAdmin\wind\controller\Wind@getWindOptions');
  16. $router->resource('wind', '\catchAdmin\wind\controller\Wind');
  17. $router->resource('fan', '\catchAdmin\wind\controller\Fan');
  18. $router->get('getFanListById','\catchAdmin\wind\controller\Fan@getList');
  19. })->middleware('auth');