vuedo icon indicating copy to clipboard operation
vuedo copied to clipboard

count(): Parameter must be an array or an object that implements Countable

Open atiqullah-ahmadzai opened this issue 6 years ago • 6 comments

atiqullah-ahmadzai avatar Apr 14 '18 09:04 atiqullah-ahmadzai

This error occurs while running php artisan db:seed in terminal.

gopal-g avatar Nov 05 '18 06:11 gopal-g

running this helped solve the issue ... php7.1 artisan db:seed

gopal-g avatar Nov 05 '18 06:11 gopal-g

This problem for PHP version may be .

Iftakharalamrizve avatar Jul 03 '19 18:07 Iftakharalamrizve

how can i solve this problem? i am right now at this point. I'm using xampp and i have created database.

Sabanhe avatar Aug 31 '19 10:08 Sabanhe

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

alvinindra avatar Sep 26 '19 04:09 alvinindra

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 !

boboybld avatar Feb 08 '21 16:02 boboybld