Laravel Collection Count and CountBy Method Example
I am going to explain you example of laravel collection count example. you will learn laravel collection countby example. This tutorial will give you simple example of count collection laravel. you can see laravel collection count by key.
I will give you list of examples of count and countby colletion in laravel. so you can easily use it with your laravel 5, laravel 6, laravel 7, laravel 8, laravel 9, laravel 10 and laravel 11 application. so let's see bellow example that will helps you lot.
Count Syntax:
$collecton->count();
Laravel Collection count() Example
public function index()
{
$collection = collect([1, 2, 3, 4, 5, 6]);
$count = $collection->count();
dd($count);
}
Output:
6
CountBy Syntax:
$collecton->countBy(
$callback
);
Laravel Collection countBy() Example
public function index()
{
$collection = collect(["one", "two", "two", "three", "three", "four"]);
$count = $collection->countBy();
dd($count);
}
Output:
Illuminate\Support\Collection Object
(
[items:protected] => Array
(
[one] => 1
[two] => 2
[three] => 2
[four] => 1
)
)
Laravel Collection countBy() with function Example
public function index()
{
$collection = collect([
["id"=>1, "name"=>"Hardik", "role"=>"Admin"],
["id"=>2, "name"=>"Paresh", "role"=>"Admin"],
["id"=>3, "name"=>"Rakesh", "role"=>"User"],
]);
$count = $collection->countBy(function ($item) {
return $item['role'];
});
dd($count);
}
Output:
Illuminate\Support\Collection Object
(
[items:protected] => Array
(
[Admin] => 2
[User] => 1
)
)
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 Collection first() and firstWhere() Methods Example
- Laravel Collection contains() and containsStrict() Methods Example
- Laravel Collection Forget | Remove Item from Collection Laravel
- Laravel Collection Push() and Put() Example
- Laravel Collection SortByDesc Tutorial with Examples
- Laravel Collection SortBy Tutorial with Examples
- Laravel Collection Merge | How to Merge Two Eloquent Collection?
- Laravel Collection Unique | Remove Duplicates from Collection Laravel
- Laravel Collection Search Method Example
- Laravel Collection Filter Method Example