create laravel migrations from table code example
Example 1: add column in laravel migration
php artisan make:migration add_paid_to_users_table --table=users
Example 2: laravel migration
$table->string('name', 100);
php artisan make:migration add_paid_to_users_table --table=users
$table->string('name', 100);