laravel 中间件排除

   public function __construct(){
        //除了主页之外
        $this->middleware('auth', ['except' => ['index','show']]);
        //只有发布页
        //$this->middleware('auth', ['only' => 'create']);
    }

  

posted @ 2017-12-08 09:12  winyh  阅读(2625)  评论(0编辑  收藏  举报