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
[NEW] Building a Typical Laravel SaaS
8 lessons
55 min
Laravel Coding with AI Agents: Cursor, Claude Code, Codex
5 lessons
1 h 01 min
Claude Code for Laravel Projects: Crash Course
8 lessons
48 min