prepare controllers
This commit is contained in:
@ -3,14 +3,25 @@
|
||||
use App\Http\Controllers\ProfileController;
|
||||
use Illuminate\Support\Facades\Route;
|
||||
|
||||
use App\Models\User;
|
||||
|
||||
|
||||
Route::get('/', function () {
|
||||
return view('home');
|
||||
});
|
||||
|
||||
Route::get('/dashboard', function () {
|
||||
return view('dashboard');
|
||||
$users = \App\Models\User::all();
|
||||
return view('dashboard.index', compact('users'));
|
||||
})->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');
|
||||
|
Reference in New Issue
Block a user