You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the CountriesSeeder.php file,
We have the countries list called statically on the Countries model. This caused a failure for me when the seeder laraval command was run.
I changed $countries = Countries::getList() to and it worked $countries = (new Countries)->getList().
The text was updated successfully, but these errors were encountered:
In the CountriesSeeder.php file,
We have the countries list called statically on the Countries model. This caused a failure for me when the seeder laraval command was run.
I changed $countries = Countries::getList() to and it worked $countries = (new Countries)->getList().
The text was updated successfully, but these errors were encountered: