Appearance
ModelFilters
列表搜索过滤
attach 是哪来的?
attach()是 Eloquent 多对多关系提供的方法,不是模型自带的。- 你调用
$customer->products()返回一个BelongsToMany关联对象,BelongsToMany类提供了:attach()→ 添加关联detach()→ 移除关联sync()→ 同步关联(先清空再写入)toggle()→ 切换关联(存在就删除,不存在就添加)
