laravel current url without domain 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: current URL without url site laravel
is work
{{Request::path()}}
or
request()->path()