How to Retrieve the full url in laravel
url() method retrieve the full url with out querystring and fullUrl() retrieves the url with query string // Without Query String… $url = $request->url(); // With Query String… $url = $request->fullUrl(); Click here for more interview questions