laravel current route code example

Example 1: laravel get current route name

Route::currentRouteName()

Example 2: get current route in blade laravel

<p> Path: {{ Request::path() }} </p>

Example 3: laravel get route

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

Example 4: laravel get route

Route::get('/user', 'UserController@index');

Example 5: laravel get current route name

Route::getCurrentRoute()->getActionName();

Example 6: route() and with() in laravel

Route::get('user/{id}/profile', function ($id) {
    //
})->name('profile');

$url = route('profile', ['id' => 1, 'photos' => 'yes']);

// /user/1/profile?photos=yes

Tags:

Php Example