Xboard/app/Services/SettingService.php

19 lines
384 B
PHP
Raw Normal View History

2023-11-17 01:44:01 -05:00
<?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();
}
}