Search

Laravel Collection Public API: isEmpty

November 29, 2016 —John Koster

isEmpty

The isEmpty can be used to determine if the collection has items or not. If the collection has no items, true will be returned, otherwise false will be returned.

1<?php
2 
3use Illuminate\Support\Collection;
4 
5// Create a new collection instance.
6$collection = new Collection;
7 
8// true
9$empty = $collection->isEmpty();
10 
11// Add an item to the collection.
12$collection[] = 'First item';
13 
14// false
15$empty = $collection->isEmpty();