laravel current url in blade code example
Example 1: current URL without url site laravel
Request::url(), Request::fullUrl(),
Request::path(), Request::is() and Request::segment().
@if (Request::path() == '/post-title')
@endif
@if (Request::is('admin/*'))
@endif
@if (Request::segment(2) == 'post')
@endif
@if (Request::url() == 'some string')
@endforeach
@if (str_contains(Request::fullUrl(), 'some-string'))
@endif
$currentURL = url()->current();
dd($currentURL);
$currentURL = url()->full();
dd($currentURL);
$currentURL = URL::current();
dd($currentURL);
$url = url()->previous();
dd($url);
$route = Route::current()->getName();
dd($route);
Example 2: get current route in blade laravel
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:
Example 3: current URL without url site laravel
is work
{{Request::path()}}
or
request()->path()
Example 4: get current route in blade laravel
Path: post/demo