From 2b7e9b43b8557ed7a49d7cf9c180d2a0d026a10a Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Sun, 15 Mar 2026 21:54:56 -0500 Subject: [PATCH] testing --- routes/web.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/routes/web.php b/routes/web.php index 215246d..546400c 100644 --- a/routes/web.php +++ b/routes/web.php @@ -7,7 +7,8 @@ use App\Http\Controllers\Dashboard\DashboardController; Route::get('/', function() { if(Auth::check()) { - return redirect('/dashboard'); + //return redirect('dashboard'); + Route::get('/dashboard', 'Dashboard\DashboardController@displayGuest')->middleware('roles:Guest'); } else { return redirect('/'); }