*/ protected $fillable = [ 'group', 'key', 'value', 'label', 'description', 'min', 'max', ]; /** * 字段类型转换。 * * @return array */ protected function casts(): array { return [ 'value' => 'integer', 'min' => 'integer', 'max' => 'integer', ]; } }