Answers for "laravel 8 relationship create migration file command"

PHP
4

laravel before migration

Schema::table('users', function ($table) {
    $table->string('email')->after('id')->nullable();
});
Posted by: Guest on December-11-2020
0

create model, controller and migration in single command laravel

php artisan make:model Products -mcr

  -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
   
newer versions of laravel > 5.6
    
    php artisan make:model Products -a
      
    -a, --all Generate a migration, factory, and resource controller for the model
Posted by: Guest on January-01-2021

Code answers related to "laravel 8 relationship create migration file command"

Browse Popular Code Answers by Language