laravel add column to table after migration code example
Example 1: add column in laravel migration
php artisan make:migration add_paid_to_users_table --table=users
Example 2: laravel 6 migration add column to existing table
migration add column to existing table in laravel 6