Answer the question
In order to leave comments, you need to log in
Laravel sort categories by number of entries?
Hello, help me solve this problem, there are categories with posts, you need to make it so that the categories that have posts are displayed and sorted by the number of entries, the
first I did, I display the categories that have entries
$categories = Category::has('projects')->with('projects')->get();
Answer the question
In order to leave comments, you need to log in
$categories = Category::has('projects')
->with('projects')
->withCount('projects')
->orderByDesc('projects_count')
->get();
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question