count() parameter must be an array or an object that implements countable in laravel

It happens because of in PHP 7.2 NULL in count() return Warning.
You can try to change

count($admin)

to

count((is_countable($admin)?$admin:[]))

Leave a Comment