laravel get current url 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: laravel get current domain
request()->getHost();
Example 3: how get url in laravel
echo url()->current();
echo url()->full();
echo url()->previous();
Example 4: 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 5: current URL without url site laravel
is work
{{Request::path()}}
or
request()->path()
Example 6: laravel get public path url
echo base_path();
echo app_path();
echo public_path();
echo storage_path();
echo storage_path('app');