This commit is contained in:
2026-03-11 00:18:26 -05:00
parent c9de588834
commit 2300393091

View File

@@ -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]);
}