diff --git a/app/Http/Controllers/Dashboard/DashboardController.php b/app/Http/Controllers/Dashboard/DashboardController.php index b617b83..89c8162 100644 --- a/app/Http/Controllers/Dashboard/DashboardController.php +++ b/app/Http/Controllers/Dashboard/DashboardController.php @@ -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]); } }