Laravel Collection isEmpty() and isNotEmpty() Method Example
In this post we will give you information about Laravel Collection isEmpty() and isNotEmpty() Method Example. Hear we will give you detail about Laravel Collection isEmpty() and isNotEmpty() Method ExampleAnd how to use it also give you demo for it if it is necessary.
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 and laravel 7 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…
Hope this code and post will helped you for implement Laravel Collection isEmpty() and isNotEmpty() Method Example. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs