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
In App\Controllers\Auth\AuthController, add the following two variables.
protected $redirectTo = '/private_dashboard'; protected $redirectAfterLogout = '/public_homepage';
You get the idea.