laravel seed migrate
php artisan migrate:refresh --seed
laravel seed migrate
php artisan migrate:refresh --seed
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.
use migration to run seeder
<?php
// inside migration file
public function up()
{
// Create a table here
// Call seeder
Artisan::call('db:seed', [
'--class' => 'SampleDataSeeder',
'--force' => true // <--- add this line
]);
}
laravel migration seed fresh
php artisan migrate:fresh --seed
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.
run seeder in migration laravel
php artisan migrate:refresh --seed
php artisan seeder UserTableSeeder
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us