get current route in blade laravel

49

Route::currentRouteName()
Get the current url

here using the Request::url() method. It will return the entire URL, but strip the query string from it.

<p> Url: {{  Request::url() }} </p>
Output

Url: http://localhost:8000/post/demo
<p> Path: {{ Request::path() }} </p>
$route = Route::current();

$name = Route::currentRouteName();

$action = Route::currentRouteAction();
@if(Request::url() === 'your url here')
    // code
@endif

Comments

Submit
0 Comments