From 23003930913e34e80f28a778dfdc698d5896ce5c Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Wed, 11 Mar 2026 00:18:26 -0500 Subject: [PATCH] testing --- app/Http/Controllers/Dashboard/DashboardController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/Dashboard/DashboardController.php b/app/Http/Controllers/Dashboard/DashboardController.php index 216c5b5..d440f9f 100644 --- a/app/Http/Controllers/Dashboard/DashboardController.php +++ b/app/Http/Controllers/Dashboard/DashboardController.php @@ -27,7 +27,7 @@ class DashboardController extends Controller } public function displayDashboard() { - $currentUser = User::where(['character_id' => auth()->user()->character_id]); + $currentUser = User::where(['character_id' => auth()->user()->character_id])->get(); dd($currentUser); return view('dashboard.dashboard')->with(['characterId' => $currentUser->character_id]); }