In addition to Eloquent's withCount() method to count related records, you can also load the count on-the-fly, with loadCount():
// if your Book hasMany Reviews...$book = Book::first(); $book->loadCount('reviews');// Then you get access to $book->reviews_count; // Or even with extra condition$book->loadCount(['reviews' => function ($query) { $query->where('rating', 5);}]);
Enjoyed This Tip?
Get access to all premium tutorials, video and text courses, and exclusive Laravel resources. Join our community of 10,000+ developers.
Recent Courses
How to Build Laravel 12 API From Scratch
28 lessons
1 h 21 min
Filament 4 From Scratch
28 lessons
2 h 25 min
NativePHP: Build Mobile App with Laravel
11 lessons
2 h 2 min read