Key-value
概述
键值字段(KeyValue)允许你与一维 JSON 对象进行交互:
use Filament\Forms\Components\KeyValue;
KeyValue::make('meta')
![Key-value](https://github.com/filamentphp/filament/blob/3.x/docs-assets/screenshots/images/light/forms/fields/key-value/simple.jpg?raw=true)
如果你在 Eloquent 中保存数据,请确保在模型属性上添加 array
强制转换(cast):
use Illuminate\Database\Eloquent\Model;
class Post extends Model
{
protected $casts = [
'meta' => 'array',
];
// ...
}