//check that app is local
if ($this->app->isLocal()) {
//if local register your services you require for development
$this->app->register('BarryvdhDebugbarServiceProvider');
} else {
//else register your services you require for production
$this->app['request']->server->set('HTTPS', true);
}