Laravel 5.7 Get Current Page URL path

Today, We want to share with you Laravel 5.7 Get Current Page URL path.In this post we will show you Laravel 5.7 Get Current URL with Parameters, hear for Get full web page URL from address bar in Laravel 5.7 we will give you demo and example for implement.In this post, we will learn about How to Get Current Page URL in Laravel 5.7 with an example.

Laravel 5.7 Get Current Page URL path

There are the Following The simple About Laravel 5.7 Get Current Page URL path Full Information With Example and source code.

As I will cover this Post with live Working example to develop Laravel 5.7 Get Current URL with Parameters, so the laravel 5.7 get url parameters in controller for this example is following below.

Latest version of the Laravel 5.7 supported HTTP Request GET methods and URL query strings facade for retriving http clients request all the data with Parameters. There for we may simply fetch those live your query string current url using Laravel Request methods as well as Web URL facade. and then I may also fetch all the web url means full url all We can retrive query string of web url too. Therefor i learn you simple main Three example As listed source code bellow:

Example 1 :laravel 5.7 get query string parameters

Get Laravel 5.7 Current URL with Parameters

$liveURL = \Request::fullUrl();

dd($liveURL);

Example 2 :laravel 5.7 get url parameters in controller

Get Current URL without Parameters

$liveURL = \URL::current();

dd($liveURL);

//OR ->

$liveURL = \Request::url();

dd($liveURL);

Example 3 : laravel 5.7 get current url with parameters

Get Only Parameters using Laravel 5.7:

//Example URL: www.pakainfo.com/category/list?item=2

$liveparam = \Request::segment(3);

dd($liveparam);
Angular 6 CRUD Operations Application Tutorials

Read :

Summary

You can also read about AngularJS, ASP.NET, VueJs, PHP.

I hope you get an idea about Laravel 5.7 Get Current Page URL path.
I would like to have feedback on my Pakainfo.com blog.
Your valuable feedback, question, or comments about this article are always welcome.
If you enjoyed and liked this post, don’t forget to share.

Leave a Comment