Vous pouvez obtenir le résultat demandé en utilisant :
$posts = Post::withCount('upvotes')
->having('upvotes_count', '>', 5)
->get();
Vous pouvez obtenir le résultat demandé en utilisant :
$posts = Post::withCount('upvotes')
->having('upvotes_count', '>', 5)
->get();