Files
TLA/app/Providers/AppServiceProvider.php
Belupeti 4aa1a77e1d
Build / Build-image (push) Successful in 1m12s
fix https?
2026-08-12 17:41:44 +02:00

27 lines
452 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($this->app->environment('production')) {
\URL::forceScheme('https');
}
}
}