29 lines
568 B
PHP
29 lines
568 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Setting extends Model
|
|
{
|
|
protected $fillable = [
|
|
'key',
|
|
'value',
|
|
];
|
|
|
|
public static function get(string $key, mixed $default = null): mixed
|
|
{
|
|
$setting = static::query()->where('key', $key)->first();
|
|
|
|
return $setting ? $setting->value : $default;
|
|
}
|
|
|
|
public static function set(string $key, mixed $value): void
|
|
{
|
|
static::query()->updateOrCreate(
|
|
['key' => $key],
|
|
['value' => $value],
|
|
);
|
|
}
|
|
}
|