fixed an issue with the AdminDashboardController construct

This commit is contained in:
2020-04-26 06:01:04 -05:00
parent 5cc9914c38
commit 66896ab73e

View File

@@ -28,7 +28,7 @@ class AdminDashboardController extends Controller
public function __construct() public function __construct()
{ {
$this->middleware('auth'); $this->middleware('auth');
$this->middleware('role:Member'); $this->middleware('role:User');
} }
/** /**