我有以下数据透视表:
public function sheeps()
{
return $this
->belongsToMany(Sheep::class, 'farm_sheep')
->withTimestamps()
->withPivot(['weight', 'foobar']);
}
现在,我想要一个BelongsToMany
字段来显示数据透视表中的值,因此: weight 和 foobar 。
但是,当我这样做时,它只显示包含Sheep Nova资源中数据的表。因此,数据透视表的值不是。我在做什么错
BelongsToMany::make('Sheeps')
->fields(function () {
return [
Number::make('Weight'),
Textarea::make('Foobar'),
];
}),