Hi
Today, i will let you know example of check laravel collection empty. you can see laravel collection empty check. if you have question about laravel check collection is empty then i will give simple example with solution. This article goes in detailed on laravel collection check if empty.
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...
Do you like below Tutorials ?
- Laravel 7.x and 6.x Ajax Multiple Image Upload with Preview Example
- Laravel select with count(*) using db raw example
- PHP Laravel select with join subquery example
- PHP Laravel Ajax Form Submit Example
- How to create events for created/updated/deleted model task in Laravel 5?
- Angular JS Form Validation Example Code
- AngularJS - Confirm Password Validation Example
- Laravel Ajax Request using X-editable bootstrap Plugin Example