I\'m building a very simple app in Laravel 5.2, but when using AuthController\'s action to log out, it just simply doesn\'t work. I have a nav bar which checks
AuthController
add this line in routes.php file Route::get('auth/logout', 'Auth\AuthController@getLogout'); and add this in your view Logout it works fine for me
routes.php
Route::get('auth/logout', 'Auth\AuthController@getLogout');
Logout