clusev/app/Providers/AppServiceProvider.php

30 lines
723 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.
*
* Note: the panel domain / app URL is an INSTALL-TIME value (APP_URL in .env,
* derived from APP_DOMAIN by install.sh), kept consistent with the Reverb endpoint,
* cookie security and Caddy's auto-TLS. It is deliberately NOT overridden at runtime
* from the database, so URL generation always matches how the panel is actually served.
*/
public function boot(): void
{
//
}
}