23 lines
410 B
PHP
23 lines
410 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Dcat\Admin\Traits\HasDateTimeFormatter;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Setting extends Model
|
|
{
|
|
use HasFactory;
|
|
use HasDateTimeFormatter;
|
|
|
|
protected $casts = [
|
|
'key' => 'string',
|
|
'value' => 'json',
|
|
];
|
|
|
|
protected $fillable = [
|
|
'key', 'value', 'remarks',
|
|
];
|
|
}
|