route name laravel code example

Example 1: laravel get current route name

Route::currentRouteName()

Example 2: laravel get route

Route::get('foo', function () {
    return 'Hello World';
});

Example 3: laravel is route name

// Check if route is ***
Request::route()->named("YourRouteNameView")

Example 4: laravel route namespace and prefix

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

Example 5: named route with parameter laravel

Route::get('/menu/{category}/{product}/{item}', ['as' => 'named.route' , 'uses' => 'MenuController@listItem']);

// to get the actual linke
route('named.route', ['category' => $category->id, 'product' => $product->id, 'item' => $item->id]);

Example 6: laravel group routes

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