laravel import route code example

Example 1: laravel route namespace and prefix

Route::prefix('admin')->group(function () {
    Route::get('/users', function () {
        // Matches The "/admin/users" URL
    });
});

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: set route name laravel

Route::get('/novanoticia', 'HomeController@getNovaNoticia')->name('route_name');

Tags:

Php Example