Answers for "create migration with seeder and factory and model in single comand"

PHP
2

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
    ]);
}
Posted by: Guest on August-14-2021
4

create migration model and seeder laravel at once

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.
Posted by: Guest on June-28-2020

Code answers related to "create migration with seeder and factory and model in single comand"

Browse Popular Code Answers by Language