在我用Laravel Filament开发的项目中,我需要向多个带有belongsToMany的表添加数据。
数据库示例:
- 类别:ID、名称
- 动漫:id,名称,描述
- 动画类别:标识符、类别标识符、动画标识符
代码:
- 动漫资源:https://codeshare.io/3AEg7v
- 动漫模特:https://codeshare.io/mpydBj
- 类别型号:https://codeshare.io/lorKBD
- 动画类别模型:https://codeshare.io/r9A3BY
我得到categoryId未找到错误的动画表。
在动漫资源中找到:
Select::make('categoryId')
->label('Kategori seçiniz')
->placeholder('Kategori Seçiniz')
->required()
->multiple()
->options(function () {
return Category::all()->pluck('title', 'id');
}),
如何将选中的多类别id数据添加到AnimeCategory表中?
1条答案
按热度按时间vngu2lb81#
溶液
动漫模特儿
动漫资源CategoryId多选