15 lines
240 B
PHP
15 lines
240 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
final class SystemSetting extends Model
|
|
{
|
|
protected $fillable = ['key', 'value', 'group'];
|
|
|
|
protected $casts = ['value' => 'array'];
|
|
}
|