1
0
Fork 0
owl-admin-starter/app/Models/Keyword.php

23 lines
524 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', 'options', 'image', 'images', 'description', 'content'];
protected $casts = [
'options' => 'array',
'images' => 'array',
];
}