florida_gym/app/Providers/AppServiceProvider.php
2026-03-13 10:08:46 +05:30

27 lines
472 B
PHP

<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*/
public function register(): void
{
//
}
/**
* Bootstrap any application services.
*/
public function boot(): void
{
if (config('app.env') !== 'local') {
\Illuminate\Support\Facades\URL::forceScheme('https');
}
}
}