标签: laravel query-builder
如何根据一对多关系中的相关项目数量制作where条款?例如"选择那些少于5个产品的订单" (假设订单 - 产品是一对多的关系)。
where
谢谢
答案 0 :(得分:3)
使用laravel文档中的查询关系:link(查找“查询关系存在”)
示例(基于文档):
// Retrieve all posts that have less than three comments... $posts = Post::has('comments', '<', 3)->get();