How to change the redirect url when logging out?

后端 未结 8 2059
没有蜡笔的小新
没有蜡笔的小新 2020-12-16 16:08

I\'m working with Laravel 5 authentification system provided by default. After logging out, a user is redirected to the root page but I\'d like to change that. I managed to

8条回答
  •  失恋的感觉
    2020-12-16 16:35

    The redirect after logout is hard coded in the trait AuthenticatesAndRegistersUsers. You can override it in your AuthController by adding this:

    public function getLogout()
    {
        $this->auth->logout();
    
        return redirect('logout');
    }
    

提交回复
热议问题