how to make a route in laravel code example
Example 1: laravel route
Route::get('user/{id}', function ($id) {
return 'User '.$id;
});
Example 2: laravel route
Route::get('user/profile', [UserProfileController::class, 'show'])->name('profile');