23 lines
533 B
PHP
23 lines
533 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Slowlyo\OwlAdmin\Traits\DatetimeFormatterTrait;
|
|
use EloquentFilter\Filterable;
|
|
use App\Traits\TreePath;
|
|
|
|
/**
|
|
* 字典管理
|
|
*/
|
|
class Keyword extends Model
|
|
{
|
|
use DatetimeFormatterTrait, Filterable, TreePath;
|
|
|
|
protected $fillable = ['id', 'name', 'key', 'value', 'parent_id', 'path', 'sort', 'level', 'options', 'image', 'images', 'description', 'content'];
|
|
|
|
protected $casts = [
|
|
'options' => 'array',
|
|
'images' => 'array',
|
|
];
|
|
} |