This commit is contained in:
2026-03-11 00:19:56 -05:00
parent a7c3b9118a
commit d5f9d2b7e8

View File

@@ -28,7 +28,7 @@ class DashboardController extends Controller
public function displayDashboard() {
$currentUser = User::where(['character_id' => auth()->user()->character_id])->get();
dd($currentUser);
//dd($currentUser);
return view('dashboard.dashboard')->with(['characterId' => $currentUser[0]->character_id]);
}
}