Initial commit

This commit is contained in:
xboard
2023-11-17 14:44:01 +08:00
commit 65fe7682ff
460 changed files with 63554 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
<?php
namespace App\Providers;
use App\Support\Setting;
use Illuminate\Support\ServiceProvider;
class SettingServiceProvider extends ServiceProvider
{
/**
* Register services.
*
* @return void
*/
public function register()
{
$this->app->bind('setting', function ($app) {
return Setting::fromDatabase(); // 假设 AdminSetting 是您的设置类
});
}
/**
* Bootstrap services.
*
* @return void
*/
public function boot()
{
//
}
}