From 66896ab73e5c341a58c84ba45db680f1d3773dc3 Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Sun, 26 Apr 2020 06:01:04 -0500 Subject: [PATCH] fixed an issue with the AdminDashboardController construct --- app/Http/Controllers/Dashboard/AdminDashboardController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/Dashboard/AdminDashboardController.php b/app/Http/Controllers/Dashboard/AdminDashboardController.php index c56b86e43..83e389071 100644 --- a/app/Http/Controllers/Dashboard/AdminDashboardController.php +++ b/app/Http/Controllers/Dashboard/AdminDashboardController.php @@ -28,7 +28,7 @@ class AdminDashboardController extends Controller public function __construct() { $this->middleware('auth'); - $this->middleware('role:Member'); + $this->middleware('role:User'); } /**