Answers for "check not null collection data in laravel"

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

Code answers related to "check not null collection data in laravel"

Browse Popular Code Answers by Language