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
For Laravel 5,
Open AuthController class : app/Http/Controllers/Auth/AuthController.php
AuthController
Add below property to the class
protected $redirectAfterLogout = 'auth/login';
you can change auth/login with any url.
auth/login