dropColumn('name'); // نضيف الحقول تبع مشروعنا $table->string('first_name'); $table->string('last_name'); $table->string('phone')->unique(); }); } public function down(): void { Schema::table('users', function (Blueprint $table) { $table->string('name'); $table->dropColumn(['first_name', 'last_name', 'phone']); }); } };