When using the MySQL database, the after method may be used to add columns after an existing column in the schema:
after
$table->after('password', function ($table) { $table->string('address_line1'); $table->string('address_line2'); $table->string('city'); });