force https in prod
Some checks are pending
linter / quality (push) Waiting to run
tests / ci (push) Waiting to run

This commit is contained in:
Edward Tirado Jr 2025-12-14 12:39:24 -06:00
parent c0f2211f58
commit 908d877cfb

View file

@ -21,6 +21,8 @@ class AppServiceProvider extends ServiceProvider
*/
public function boot(): void
{
//
if ($this->app->environment('production')) {
\URL::forceScheme('https');
}
}
}