naming routes laravel code example
Example 1: laravel is route name
Request::route()->named("YourRouteNameView")
Example 2: laravel route namespace and prefix
Route::prefix('admin')->group(function () {
Route::get('/users', function () {
});
});
Example 3: laravel route namespace and prefix
Route::name('admin.')->group(function () {
Route::get('/users', function () {
})->name('users');
});
Example 4: set route name laravel
Route::get('/novanoticia', 'HomeController@getNovaNoticia')->name('route_name');
Route::get('/novanoticia', ['as' => 'route_name', 'uses' => 'HomeController@getNovaNoticia']);
Example 5: laravel route
Route::get('user/{id}', function ($id) {
return 'User '.$id;
});
Example 6: laravel 8 routes namespace
Route::group(['namespace' => 'App\Http\Controllers', 'prefix' => 'admin',
'as' => 'admin.', 'middleware' => ['auth:sanctum', 'verified']], function()
{
Route::get('/dashboard', ['DashboardController', 'index']);
});