laravel routing with parameters code example
Example 1: named route with parameter laravel
Route::get('/menu/{category}/{product}/{item}', ['as' => 'named.route' , 'uses' => 'MenuController@listItem']);
route('named.route', ['category' => $category->id, 'product' => $product->id, 'item' => $item->id]);
Example 2: set route name laravel
Route::get('/novanoticia', 'HomeController@getNovaNoticia')->name('route_name');
Route::get('/novanoticia', ['as' => 'route_name', 'uses' => 'HomeController@getNovaNoticia']);
Example 3: laravel route
Route::get('user/profile', [UserProfileController::class, 'show'])->name('profile');
Example 4: route parameter type laravel
Route::get('/user/{name}', function ($name) {
})->where('name', '[A-Za-z]+');
Route::get('/user/{id}', function ($id) {
})->where('id', '[0-9]+');
Route::get('/user/{id}/{name}', function ($id, $name) {
})->where(['id' => '[0-9]+', 'name' => '[a-z]+']);
reference : https: