【发布时间】:2021-09-24 23:15:38
【问题描述】:
请帮忙。 我不明白。如何将字段添加到关系 belongsToMany Laravel nova。 版本 Nova - 3.27(今天最后)。即使没有带有枢轴的示例,字段也是如此。 示例和示例 2 字段仅显示编辑页面。查看和索引!不显示。
BelongsToMany::make('Product in cart', 'productPrices', ProductPrice::class)->fields(function () {
return [
Text::make('Example')->showOnIndex(true),
Text::make('Example2')->showOnIndex(true)->displayUsing(function($field) {}),
];
}),
【问题讨论】:
标签: php laravel laravel-nova