Laravel Collection isEmpty() and isNotEmpty() Method Example

By Hardik Savani April 16, 2024 Category : Laravel

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

Shares