From e1b491065d34b9badf400610bb63eb21432a800f Mon Sep 17 00:00:00 2001 From: Mathias Date: Mon, 3 Nov 2014 15:35:00 +0100 Subject: [PATCH] new logout-method naming --- app/Http/Controllers/AuthController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/AuthController.php b/app/Http/Controllers/AuthController.php index 254044d5..b1539d51 100644 --- a/app/Http/Controllers/AuthController.php +++ b/app/Http/Controllers/AuthController.php @@ -23,7 +23,7 @@ public function __construct(Guard $auth) { $this->auth = $auth; - $this->middleware('guest', ['except' => 'logout']); + $this->middleware('guest', ['except' => 'getLogout']); } /**