fixed SSL issues on production

This commit is contained in:
Kwesi Banson Jnr
2026-04-02 15:40:37 +00:00
parent c466e5533e
commit 177142c5f9
2 changed files with 4 additions and 2 deletions

View File

@@ -19,6 +19,8 @@ class AppServiceProvider extends ServiceProvider
*/
public function boot(): void
{
//
if (config('app.env') === 'production') {
URL::forceScheme('https');
}
}
}