From fc2dfb3933e4029dad9f3ed20699df9076d5bd7a Mon Sep 17 00:00:00 2001 From: Fraser Murray Date: Sun, 9 Oct 2016 19:57:22 +0100 Subject: [PATCH] Change spelling of autherised --- app/Http/Middleware/CheckRoleAgent.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Middleware/CheckRoleAgent.php b/app/Http/Middleware/CheckRoleAgent.php index e2e73012a..d7f5b9c28 100644 --- a/app/Http/Middleware/CheckRoleAgent.php +++ b/app/Http/Middleware/CheckRoleAgent.php @@ -25,6 +25,6 @@ class CheckRoleAgent return $next($request); } - return redirect('dashboard')->with('fails', 'You are not Autherised'); + return redirect('dashboard')->with('fails', 'You are not authorised'); } }