#php #laravel #migration #migrant #database #table
First run following command with new column name and existing table name.
php artisan make:migration add_columnname_to_tablename_table --table=tablename
then after creating migration in go to file and add column name.
then run following command
php artisan migrate