nWidart / laravel-modules

Module Management In Laravel
https://docs.laravelmodules.com
MIT License
5.51k stars 957 forks source link

Seeders do not sow #1888

Closed JohnnyMaynne closed 1 month ago

JohnnyMaynne commented 3 months ago

Laravel: v11.1.2 Package: v11.0.11

I have this module structure, which I changed in the configuration.

image

I issue a command php artisan module:seed, it is executed but the data is not sown:

image
solomon-ochepa commented 3 months ago

Register the seeder ($this->call([...])) in the run() method of the base file UserDatabaseSeeder.php, and take note of the "DatabaseSeeder" in the name!

JohnnyMaynne commented 3 months ago

Register the seeder ($this->call([...])) in the run() method of the base file UserDatabaseSeeder.php, and take note of the "DatabaseSeeder" in the name!

I did this before creating issue, but this is a workaround

image