//Invalid request (Unsupported SSL request)
//Alterar
URL::forceScheme('https');
//para
URL::forceScheme('`http`');
//limpar o cache usando o comando:
php artisan config:cache
//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);
}