Answers for "check if collection was empty in laravel"

PHP
2

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
2

collection empty laravel

$isempty = $collection->isEmpty();
Posted by: Guest on September-28-2020

Code answers related to "check if collection was empty in laravel"

Browse Popular Code Answers by Language