How to add a column to an already existing table in Laravel using Migrations

First, you need to create the migration. While creating the migration file we need to make sure the name gives us an idea of what is going on. For example,if we are adding a column on the product table called product_price, we should first create a migration with the title Doing this way, we will …

How to add a column to an already existing table in Laravel using Migrations Read More »