Laravel Relationship Eager Loading with Count Example
Eager Loading is a concept of laravel relationship and it is a best. But when you are working with model relationship with eager loading then you require to get count number of records for relation model. At that we can use withcount() for eager loading count in laravel 6, laravel 7, laravel 8, laravel 9, laravel 10 and laravel 11.
Whenever you require to count rows of relation model then we will use withcount(). So that can help us. you can see bellow example. i will count number of comments for each posts. you can see bellow example.
Let's see bellow example. So might be it can help you.
Simple Count Example:
$posts = Post::withCount('comments')->get();
// comments_count
Multiple Counts Example:
$posts = Post::withCount([
'comments',
'tags'
])->get();
// comments_count
// tags_count
Count with Condition Example:
$posts = Post::withCount([
'comments',
'comments as active_comments' => function (Builder $query) {
$query->where('approved', 1);
}
])->get();
// comments_count
// active_comments
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- Laravel Eloquent Select Single Column to Array Example
- Laravel Eloquent Group By Year with Sum Example
- Laravel Eloquent When Condition Example
- Laravel Eloquent Sum Multiple Columns Example
- Laravel Eloquent updateOrCreate Example
- Laravel Eloquent whereBetween() Query Example
- Laravel Eloquent selectRaw() Query Example
- Laravel Relationship Eager Loading Example
- Laravel Eloquent Relationships Tutorial From Scratch
- Laravel One to One Eloquent Relationship Tutorial
- Laravel One to Many Eloquent Relationship Tutorial
- Laravel Many to Many Eloquent Relationship Tutorial
- Laravel Has Many Through Eloquent Relationship Tutorial
- Laravel One to Many Polymorphic Relationship Tutorial