How to track which seeders got applied in Laravel?
问题 The obvious way to apply specific seeds rather than seeding everything is by using the --class flag: php artisan db:seed --class[=CLASS] Is there a way to track which seeders have been applied so far in Laravel (say, the same way you can track how migrations got applied by running php artisan migrate:status )? Further, is there a way to apply a range of seeders (rather than specifying each class individually, which is very cumbersome). What made me think about this is this part in a seeder in