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