A very simple database seeder to make populating your database with test data easier.
There is just one command; php artisan db:seed. Then pick which seeders you would like to run.
- Clone the repo
- Copy the
.env.exampleto.envand update the database credentials - Run composer
php composer update
- Create your seeders using your preferred Laravel style
- Run
php artisan db:seedto run individual, or all, seeders as required