【发布时间】:2019-11-11 14:11:21
【问题描述】:
我有两个表格,主题和帖子。我只想获取没有帖子的主题。
我尝试使用 order by,但是我有一些没有帖子的主题,还有一些有帖子的主题,所以这是错误的。
Topic::where('locale', $locale)
->withCount('posts')
->orderBy('posts_count', 'ASC')
->paginate(15);
【问题讨论】:
-
你想得到什么?所有没有帖子的主题?