Skip to content

ModelFilters

列表搜索过滤

attach 是哪来的?

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

Lucking