string('address')->nullable()->after('phone'); $table->date('birth_date')->nullable()->after('address'); $table->enum('gender', ['male', 'female'])->nullable()->after('birth_date'); $table->string('profile_picture')->nullable()->after('gender'); }); } public function down() { Schema::table('users', function (Blueprint $table) { $table->dropColumn([ 'address', 'birth_date', 'gender', 'profile_picture' ]); }); } };