How to get current URL with parameters in Laravel 5

How to get current URL with parameters in Laravel 5

In this post, I will tell you how can you get base url, current url with query string and url segment in Laravel.

While working with Laravel, i need many times to get current url and its segment, you can get current url by using helper function URL::current().

How to get current URL without query string in Laravel

  1. return \URL::current();
  2. OR
  3. return \Request::url();
How to get current URL with query string in Laravel

  1. return \Request::fullUrl();
How to get url parameters in Laravel

You can easily get your url segment in Laravel by using segment method. Let's assume i have a url with some query string.

www.domain.tld/user/list?page=2


  1. $url_segment = \Request::segment(3);

Phone: (+91) 8800417876
Noida, 201301
Attention Required! | Cloudflare

Sorry, you have been blocked

You are unable to access ressim.net

Why have I been blocked?

This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

What can I do to resolve this?

You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.