Answers for "laravel edit model fields migrate"

PHP
1

how set field after another field in migration in laravel

Schema::table('users', function($table)
{
    $table->string('phone_nr')->after('id');
});
Posted by: Guest on August-04-2021
0

laravel make model along with its controller and migration file

php artisan make:model Product -c -m
Posted by: Guest on July-07-2021

Code answers related to "laravel edit model fields migrate"

Browse Popular Code Answers by Language