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
The redirect after logout is hard coded in the trait AuthenticatesAndRegistersUsers. You can override it in your AuthController by adding this:
AuthenticatesAndRegistersUsers
AuthController
public function getLogout() { $this->auth->logout(); return redirect('logout'); }