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

View File

@@ -0,0 +1,18 @@
<?php
namespace App\Services;
use App\Models\Setting as SettingModel;
class SettingService
{
public function get($name, $default = null)
{
$setting = SettingModel::where('name', $name)->first();
return $setting ? $setting->value : $default;
}
public function getAll(){
return SettingModel::all()->pluck('value', 'name')->toArray();
}
}