How to Check Collection is Empty or Not in Laravel?

April 28, 2020 | Category : Laravel

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...