route.php 1.2 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('sms', function () use ($router){
  13. // config路由
  14. $router->resource('config', '\catchAdmin\sms\controller\Config');
  15. // template 路由
  16. $router->resource('template', '\catchAdmin\sms\controller\Template');
  17. $router->resource('smsSendLog', '\catchAdmin\sms\controller\SmsSendLog');
  18. $router->get('alarmSendCount', '\catchAdmin\sms\controller\WxSendLog@AlarmSendCount');
  19. // smsVerificationCode路由
  20. $router->resource('smsVerificationCode', '\catchAdmin\sms\controller\SmsVerificationCode');
  21. })->middleware('auth');