Retrieve the URL without query parameters

If for some reason, your URL is having query parameters, you can retrieve the URL without query parameters using the fullUrlWithoutQuery method of request like so.

1// Original URL: https://www.amitmerchant.com?search=laravel&lang=en&sort=desc
2$urlWithQUeryString = $request->fullUrlWithoutQuery([
3 'lang',
4 'sort'
5]);
6echo $urlWithQUeryString;
7// Outputs: https://www.amitmerchant.com?search=laravel

Tip given by @amit_merchant

Like our articles?

Become a Premium Member for $129/year or $29/month
What else you will get:
  • 22 courses (477 lessons, total 38 h 20 min)
  • 2 long-form tutorials (one new every week)
  • access to project repositories
  • access to private Discord