Eloquent Collection: Counting and Detect Empty

LaravelLaravel 4EloquentLaravel Collection

Laravel Problem Overview


This may be a trivial question but I am wondering if Laravel recommends a certain way to check whether an Eloquent collection returned from $result = Model::where(...)->get() is empty, as well as counting the number of elements.

We are currently using !$result to detect empty result, is that sufficient? As for count($result), does it actually cover all cases, including empty result?

Laravel Solutions


Solution 1 - Laravel

When using ->get() you cannot simply use any of the below:

if (empty($result)) { }
if (!$result) { }
if ($result) { }

Because if you dd($result); you'll notice an instance of Illuminate\Support\Collection is always returned, even when there are no results. Essentially what you're checking is $a = new stdClass; if ($a) { ... } which will always return true.

To determine if there are any results you can do any of the following:

if ($result->first()) { } 
if (!$result->isEmpty()) { }
if ($result->count()) { }
if (count($result)) { }

You could also use ->first() instead of ->get() on the query builder which will return an instance of the first found model, or null otherwise. This is useful if you need or are expecting only one result from the database.

$result = Model::where(...)->first();
if ($result) { ... }

Notes / References

Bonus Information

The Collection and the Query Builder differences can be a bit confusing to newcomers of Laravel because the method names are often the same between the two. For that reason it can be confusing to know what one you’re working on. The Query Builder essentially builds a query until you call a method where it will execute the query and hit the database (e.g. when you call certain methods like ->all() ->first() ->lists() and others). Those methods also exist on the Collection object, which can get returned from the Query Builder if there are multiple results. If you're not sure what class you're actually working with, try doing var_dump(User::all()) and experimenting to see what classes it's actually returning (with help of get_class(...)). I highly recommend you check out the source code for the Collection class, it's pretty simple. Then check out the Query Builder and see the similarities in function names and find out when it actually hits the database.

Solution 2 - Laravel

I think you are looking for:

$result->isEmpty()

This is different from empty($result), which will not be true because the result will be an empty collection. Your suggestion of count($result) is also a good solution. I cannot find any reference in the docs

Solution 3 - Laravel

I agree the above approved answer. But usually I use $results->isNotEmpty() method as given below.

if($results->isNotEmpty())
{
//do something
}

It's more verbose than if(!results->isEmpty()) because sometimes we forget to add '!' in front which may result in unwanted error.

Note that this method exists from version 5.3 onwards.

Solution 4 - Laravel

There are several methods given in Laravel for checking results count/check empty/not empty:

$result->isNotEmpty(); // True if result is not empty.
$result->isEmpty(); // True if result is empty.
$result->count(); // Return count of records in result.

Solution 5 - Laravel

I think better to used

$result->isEmpty();

> The isEmpty method returns true if the collection is empty; otherwise, > false is returned.

Solution 6 - Laravel

I think you try something like

  @if(!$result->isEmpty())
         // $result is not empty
    @else
        // $result is empty
    @endif

or also use

if (!$result) { }
if ($result) { } 

Solution 7 - Laravel

According to Laravel Documentation states you can use this way:

$result->isEmpty();

The isEmpty method returns true if the collection is empty; otherwise, false is returned.

Solution 8 - Laravel

You can do

$result = Model::where(...)->count(); 

to count the results.

You can also use

if ($result->isEmpty()){}

to check whether or not the result is empty.

Solution 9 - Laravel

You can use: $counter = count($datas);

Solution 10 - Laravel

so Laravel actually returns a collection when just using Model::all(); you don't want a collection you want an array so you can type set it. (array)Model::all(); then you can use array_filter to return the results

$models = (array)Model::all()
$models = array_filter($models);
if(empty($models))
{
 do something
}

this will also allow you to do things like count().

Solution 11 - Laravel

You want to check these two cases of count().

#1

If the result contains only a single row (one record) from the database by using ->first().

if(count($result)) {
    // record is exist true...
}

#2

If result contain set of multiple row (multiple records) by using ->get() or ->all().

if($result->count()) {
    //record is exist true...
}

Solution 12 - Laravel

The in_array() checks if a value exists in an array.

public function isAbsolutelyEmpty($value)
{
   return in_array($value, ["", "0", null, 0, 0.0], true);
}

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionbitinnView Question on Stackoverflow
Solution 1 - LaravelGary GreenView Answer on Stackoverflow
Solution 2 - Laravelclod986View Answer on Stackoverflow
Solution 3 - Laravelsathish RView Answer on Stackoverflow
Solution 4 - LaravelLovepreet SinghView Answer on Stackoverflow
Solution 5 - LaravelJignesh JoisarView Answer on Stackoverflow
Solution 6 - LaravelpardeepView Answer on Stackoverflow
Solution 7 - LaravelUdhav SarvaiyaView Answer on Stackoverflow
Solution 8 - LaravelPatrick LumenusView Answer on Stackoverflow
Solution 9 - LaravelNazmul HaqueView Answer on Stackoverflow
Solution 10 - LaravelBenjamin SweetnamView Answer on Stackoverflow
Solution 11 - LaravelRavindra BhanderiView Answer on Stackoverflow
Solution 12 - LaravelAyomikun SamuelView Answer on Stackoverflow