This website collects cookies to deliver better user experience
How to Get Current URL in Laravel
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