vuedo
vuedo copied to clipboard
count(): Parameter must be an array or an object that implements Countable
This error occurs while running php artisan db:seed
in terminal.
running this helped solve the issue ... php7.1 artisan db:seed
This problem for PHP version may be .
how can i solve this problem? i am right now at this point. I'm using xampp and i have created database.
Input this into the file seed on public run() all of file to ignoring the problems.
if(version_compare(PHP_VERSION, '7.2.0', '>=')) {
error_reporting(E_ALL ^ E_NOTICE ^ E_WARNING);
}
I'm solve the problem with that
Input this into the file seed on public run() all of file to ignoring the problems.
if(version_compare(PHP_VERSION, '7.2.0', '>=')) { error_reporting(E_ALL ^ E_NOTICE ^ E_WARNING); }
I'm solve the problem with that
this work for me !