laravel run seeder from migration code example

Example 1: laravel migration seed fresh

php artisan migrate:fresh --seed

Example 2: seed specific table

php artisan db:seed --class=UserTableSeeder

Example 3: laravel seed migrate

php artisan migrate:refresh --seed

Example 4: eloquent run seeder

php artisan db:seed --class=UserSeeder

Example 5: create migration, controller, model and seeder laravel

php artisan make:model MODEL_PATH\MODEL_NAME -mcrs
or
php artisan make:model MODEL_PATH\MODEL_NAME -a
  
-a, --all Generate a migration, factory, and resource controller for the model 
-m, --migration Create a new migration file for the model.
-c, --controller Create a new controller for the model.
-r, --resource Indicates if the generated controller should be a resource controller
-s, --seeder Create a new seeder file for the model.

Example 6: create migration model and seeder laravel at once

php artisan make:model MODEL_PATH\MODEL_NAME -ms
  
-m, --migration Create a new migration file for the model.
-s, --seeder Create a new seeder file for the model.

Tags:

Misc Example