How to Get Current URL in Laravel

In this small post we will see how to get current url in laravel, if you want to get current page url in laravel then we can use many method such type current(), full(), request(), url().

Here i will give you all example to get current page url in laravel, in this example i have used helper and function as well as so let’s start example of how to get current url id in laravel.

Example 1 : full() with Helper and Query string parameters

$currenturl = url()->full();dd($currenturl);

Example 2 : current() with Helper

$currenturl = url()->current();dd($currenturl);

Example 3 : using Request

$currenturl = Request::url();dd($currenturl);

Example 4: current() with Facade

$currenturl = URL::current();dd($currenturl);

Example 5: full() with Facade and Query string parameters

$currenturl = URL::full();dd($currenturl);

Get Previous URL in Laravel

$pre_url= url()->previous();dd($pre_url);

Get Current Route in Laravel

$cur_route = Route::current()->getName();dd($cur_route);

Thanks for the reading…!!
Don’t forgot to like, claps and follow.

--

--

I am Laravel and PHP Developer. I have also Good Knowledge of JavaScript, jQuery, Bootstrap and REST API. Visit Website: http://websolutionstuff.com/

Get the Medium app

A button that says 'Download on the App Store', and if clicked it will lead you to the iOS App store
A button that says 'Get it on, Google Play', and if clicked it will lead you to the Google Play store
Websolutionstuff

I am Laravel and PHP Developer. I have also Good Knowledge of JavaScript, jQuery, Bootstrap and REST API. Visit Website: http://websolutionstuff.com/