Answers for "php laravel check if collection es empty"

PHP
6

laravel check collection not empty

if ($mentor->first()) { } 
if (!$mentor->isEmpty()) { }
if ($mentor->count()) { }
if (count($mentor)) { }
if ($mentor->isNotEmpty()) { }
Posted by: Guest on December-21-2020
1

laravel collection isEmpty

collect([])->isEmpty();

// true
Posted by: Guest on July-24-2021

Code answers related to "php laravel check if collection es empty"

Browse Popular Code Answers by Language