我有这 3 个模型:Person、Representation、Studio。
现在这些是关系:
- 人有工作室(belongsToMany Studio)和代表(belongsToMany Representation)
- 表示有人员(belongsToMany Person)和工作室(belongsToMany Studio)
- 工作室有人员(belongsToMany Person)和表示(belongsToMany Representation)
我的问题是我需要做类似“person_representation_studio”的事情,其中对于某个工作室 ex.id=1,只存在一个表示 ex.id=2 和一个人 ex.id=3。
当另一个请求像第二行一样时,我不需要添加它,只需要更新 person_id。
前任。
person_id | 表示_id | studio_id |
---|---|---|
3 | 2 | 1 |
4 | 2 | 1 |
有什么想法吗?