protected $redirectAfterLogout = 'auth/login';
在注销后重定向登录,但我有一些页面,我想重定向到它们,例如重定向到pages/aboutUs
或pages/contactUs
或pages/home
可选,我无法更改{{ 1}}变量给他们
我该如何实施这个解决方案?
答案 0 :(得分:1)
只需更改
protected $redirectAfterLogout = 'auth/login';
但请记住,您重定向到的控制器中的操作不能包含在__constructor
中:
$this->middleware('auth');
同时检查您的web middleware
是否要求表单用户登录。
然后重定向就可以了。
祝你好运!