22 lines
491 B
PHP
22 lines
491 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::where('key', $key)->first();
|
|
return $setting ? $setting->value : $default;
|
|
}
|
|
|
|
public static function set(string $key, mixed $value): void
|
|
{
|
|
static::updateOrCreate(['key' => $key], ['value' => $value]);
|
|
}
|
|
}
|