mirror of
https://github.com/cedar2025/Xboard.git
synced 2025-01-22 18:48:14 -05:00
19 lines
384 B
PHP
19 lines
384 B
PHP
|
<?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();
|
||
|
}
|
||
|
}
|