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=desc2$urlWithQUeryString = $request->fullUrlWithoutQuery([3 'lang',4 'sort'5]);6echo $urlWithQUeryString;7// Outputs: https://www.amitmerchant.com?search=laravel
Tip given by @amit_merchant