disable forced https

This commit is contained in:
Chimezie Enyinnaya
2024-09-10 08:57:27 +01:00
parent 556e862203
commit a499bda5fe

View File

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