// +---------------------------------------------------------------------- namespace App\Models\System; class DictGroup extends \App\Models\BaseModel { protected $table = 'system_dict_groups'; protected $fillable = ['title', 'name', 'parent_id', 'sort', 'status']; protected $hidden = ['deleted_at']; protected function casts(): array { return [ 'parent_id' => 'integer', 'status' => 'integer', 'sort' => 'integer', ]; } }