php artisan migrate:refresh --seed
public function run()
{
$this->call(RegiserUserSeeder::class);
}
php artisan migrate:refresh --seed
//Or to run specific seeder
php artisan seeder RegiserUserSeeder
php artisan make:model MODEL_PATHMODEL_NAME -mcrs
or
php artisan make:model MODEL_PATHMODEL_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.
php artisan migrate:refresh --seed
php artisan seeder UserTableSeeder
<?php
// inside migration file
public function up()
{
// Create a table here
// Call seeder
Artisan::call('db:seed', [
'--class' => 'SampleDataSeeder',
'--force' => true // <--- add this line
]);
}
$ php artisan db:seed
php artisan make:model MODEL_PATHMODEL_NAME -ms
-m, --migration Create a new migration file for the model.
-s, --seeder Create a new seeder file for the model.