美文网首页
Middleware 中间件的使用

Middleware 中间件的使用

作者: 多厘 | 来源:发表于2015-10-25 22:05 被阅读100次
    1. 写在控制器中
    $this->middleware('front.auth', [
        'except' => [
            'getLogin' # 这里是方法名称, 需要写完整
        ]
    ]);
    
    1. 写在 路由中

    2. 写在 中间件的 $except

    相关文章

      网友评论

          本文标题:Middleware 中间件的使用

          本文链接:https://www.haomeiwen.com/subject/aycxhttx.html