From 0c25dcc91cab57f075722cb9e19fdf450bb6cc84 Mon Sep 17 00:00:00 2001 From: hussamEL-Hwary Date: Thu, 7 Sep 2017 09:17:13 +0200 Subject: [PATCH] Update AuthController.php we need to flush sessions. --- app/Http/Controllers/Web/AuthController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/Web/AuthController.php b/app/Http/Controllers/Web/AuthController.php index b70a4414..c1d60e51 100644 --- a/app/Http/Controllers/Web/AuthController.php +++ b/app/Http/Controllers/Web/AuthController.php @@ -29,7 +29,7 @@ public function login() public function logout() { Auth::logout(); - + Session::flush(); return redirect()->route('home'); }