标签: laravel
我想知道如何在laravel中过滤所有尚无答案的问题
所以我假设
Forum::where(forum->comments->count(), 0)
我已经设定了关系,当然代码没有用,只是为了一个例子
谢谢!
答案 0 :(得分:1)
试试这个
Question::doesntHave('answers')->get();
如果你想要计数
Question::doesntHave('answers')->count();