ItSolutionStuff.com

Laravel Collection isEmpty() and isNotEmpty() Method Example

By Hardik Savani • April 16, 2024
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...

Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

Laravel Collection Implode Method Example

Read Now →

Laravel Collection Has Method Example

Read Now →

Laravel Collection Flip Method Example

Read Now →

Laravel Collection Flatten Method Example

Read Now →

Laravel Collection Map Method Example

Read Now →

Laravel Collection SortBy Tutorial with Examples

Read Now →

Laravel Collection Merge | How to Merge Two Eloquent Collection?

Read Now →

Laravel Collection Unique | Remove Duplicates from Collection Laravel

Read Now →