Level 75
You can't use whereRelation in your code.
This piece of code
$posts = Post::whereRelation('comments', 'is_approved', false)->get();
is equivalent to this one
$posts = Post::whereHas('comments', function ($query) {
$query->where('is_approved', true);
})->get();
In your code there is more logic, which means you have to stay with whereHas.
1 like