Sie können das gewünschte Ergebnis erzielen, indem Sie Folgendes verwenden:
$posts = Post::withCount('upvotes')
->having('upvotes_count', '>', 5)
->get();
Sie können das gewünschte Ergebnis erzielen, indem Sie Folgendes verwenden:
$posts = Post::withCount('upvotes')
->having('upvotes_count', '>', 5)
->get();