diff --git a/app/Http/Controllers/Dashboard/DashboardIndexController.php b/app/Http/Controllers/Dashboard/DashboardIndexController.php new file mode 100644 index 0000000..46e66ec --- /dev/null +++ b/app/Http/Controllers/Dashboard/DashboardIndexController.php @@ -0,0 +1,13 @@ +middleware(['auth', 'verified'])->name('dashboard'); +// Subroute for users under /dashboard/users +Route::get('/dashboard/users', function () { + $users = \App\Models\User::all(); + return view('dashboard.users', compact('users')); +})->name('dashboard.users'); + + Route::middleware('auth')->group(function () { Route::get('/profile', [ProfileController::class, 'edit'])->name('profile.edit'); Route::patch('/profile', [ProfileController::class, 'update'])->name('profile.update');