first commit

This commit is contained in:
CN-JS-HuiBai
2026-04-07 16:54:24 +08:00
commit 2c6a38c80d
399 changed files with 42205 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
<?php
namespace App\Providers;
use App\Support\Setting;
use Illuminate\Support\ServiceProvider;
use Illuminate\Contracts\Foundation\Application;
class SettingServiceProvider extends ServiceProvider
{
/**
* Register services.
*
* @return void
*/
public function register()
{
$this->app->scoped(Setting::class, function (Application $app) {
return new Setting();
});
}
/**
* Bootstrap services.
*
* @return void
*/
public function boot()
{
// App URL is forced per-request via middleware (Octane-safe).
}
}