laravel 6 how to run artisan command as a seeder code example
Example 1: laravel run seed
#All of them
php artisan db:seed
#One class
php artisan db:seed --class=UserSeeder
Example 2: laravel make seeder
php artisan make:seeder NameOfTheSeeder
#All of them
php artisan db:seed
#One class
php artisan db:seed --class=UserSeeder
php artisan make:seeder NameOfTheSeeder