app->get('config'); $class = UrlGenerator::class; if (! $config->get('rewrite_urls', true)) { $class = LegacyUrlGenerator::class; } $urlGenerator = $this->app->make($class); $this->app->instance('routing.urlGenerator', $urlGenerator); $this->app->bind(UrlGeneratorInterface::class, 'routing.urlGenerator'); } }