Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
atiqullah-ahmadzai opened this issue Apr 14, 2018 · 6 comments

Comments

@atiqullah-ahmadzai
Copy link

No description provided.

@gopal-g
Copy link

gopal-g commented Nov 5, 2018

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

@gopal-g
Copy link

gopal-g commented Nov 5, 2018

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

@Iftakharalamrizve
Copy link

This problem for PHP version may be .

@Sabanhe
Copy link

Sabanhe commented Aug 31, 2019

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

@alvinindra
Copy link

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

@boboybld
Copy link

boboybld commented Feb 8, 2021

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 !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants