I can\'t figure out how to add a new column to my existing database table using the Laravel framework.
I tried to edit the migration file using...
First rollback your previous migration
php artisan migrate:rollback
After that, you can modify your existing migration file (add new , rename or delete columns) then Re-Run your migration file
php artisan migrate