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
This should be the content of your constructor in AuthController
$this->middleware('web'); $this->middleware('guest', ['except' => 'logout']);