app->bind( NewsProviderInterface::class, ImdbNewsProvider::class ); } /** * Bootstrap any application services. * * @return void */ public function boot() { // dd($this->app['request']->headers->get('x-forwarded-host')); $this->app['request']->server->set('HTTPS', true); if ($this->app['request']->headers->has('x-forwarded-host')) { $this->app['url']->forceRootUrl('https://'.$this->app['request']->server->get('HTTP_X_FORWARDED_HOST')); } // if (env('APP_ENV') !== 'local') { // } } }