* @copyright By CatchAdmin * @license https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt */ $router->group('wechat', function () use ($router){ // 公众号粉丝 $router->group('official/users', function () use ($router){ $router->get('', '\catchAdmin\wechat\controller\Users@index'); $router->put('remark//', '\catchAdmin\wechat\controller\Users@remark'); $router->put('block/', '\catchAdmin\wechat\controller\Users@block'); $router->put('unblock/', '\catchAdmin\wechat\controller\Users@unblock'); $router->get('blacklist', '\catchAdmin\wechat\controller\Users@blacklist'); }); });