In your migrations, you can add multiple columns after another column using the after method:
1Schema::table('users', function (Blueprint $table) {2 $table->after('password', function ($table) {3 $table->string('address_line1');4 $table->string('address_line2');5 $table->string('city');6 });7});
Tip given by @ncosmeescobedo