Laravel Collection isEmpty() and isNotEmpty() Method Example
This article will provide example of laravel collection check if empty. We will use laravel check collection is not empty. i would like to share with you check if collection is empty in laravel. This article will give you simple example of check laravel collection empty. Let's see bellow example laravel collection empty check.
I will give you simple examples of isEmpty and isNotEmpty 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.
Laravel Collection isEmpty() Example
Syntax:
$collecton->isEmpty();
Example
public function index()
{
$collection = collect([]);
$output = $collection->isEmpty();
}
Output:
true
Laravel Collection isNotEmpty() Example
Syntax:
$collecton->isNotEmpty();
Example
public function index()
{
$collection = collect([]);
$output = $collection->isNotEmpty();
}
Output:
false
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 Implode Method Example
- Laravel Collection Has Method Example
- Laravel Collection Flip Method Example
- Laravel Collection Flatten Method Example
- Laravel Collection Map Method Example
- Laravel Collection SortBy Tutorial with Examples
- Laravel Collection Merge | How to Merge Two Eloquent Collection?
- Laravel Collection Unique | Remove Duplicates from Collection Laravel