Answers for "laravel is not empty value ofcollection"

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

Browse Popular Code Answers by Language