id(); $table->foreignId('product_id')->constrained('products')->cascadeOnDelete(); $table->foreignId('customer_id')->constrained('customers')->cascadeOnDelete(); $table->date('handover_date')->nullable(); $table->string('status')->default('chua_du_dieu_kien'); $table->text('remark')->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('handovers'); } };