Use route helper to return a full url to a named route. You can pass parameters in the second argument for the dynamic parts of the url.
#laravel#helper
route('home')// With a single parameterroute('shop',$product->slug)// Or an array of parametersroute('shop',['product'=>$product->slug,'title'=>$product->name])