Answers for "php artisan make migration and model"

PHP
24

php artisan make migration

php artisan make:migration create_users_table
Posted by: Guest on January-14-2021
21

laravel foreign key

Schema::table('posts', function (Blueprint $table) {
    $table->unsignedBigInteger('user_id');

    $table->foreign('user_id')->references('id')->on('users');
});
OR
Schema::table('posts', function (Blueprint $table) {
    $table->foreignId('user_id')->constrained();
});
Posted by: Guest on December-09-2020
2

artisan make model with migration

php artisan make:model Model_Name -m
Posted by: Guest on May-14-2020
5

laravel create model and migration

# If you would like to generate a database migration when you 
# generate the model, you may use the --migration or -m option:

php artisan make:model Flight --migration
php artisan make:model Flight -m
Posted by: Guest on April-22-2020
2

artisan make migration with model

php artisan make:Model Status -m
Posted by: Guest on November-06-2020
1

create migration laravel

php artisan make:Model Product -m -c  --resource
Posted by: Guest on November-26-2020

Code answers related to "php artisan make migration and model"

Browse Popular Code Answers by Language