This is the helper function route()
in laravel
function route($name, $parameters = [], $absolute = true)
{
return app('url')->route($name, $parameters, $absolute);
}
how could i override that function so $absolute = false
by default?