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
Simply add below route and do not add this inside any route group(middleware):
Route::get('your-route', 'Auth\AuthController@logout');
Now logout should work as it should in L 5.2 without modifying anything in AuthController.