id(); $table->foreignId('reclamation_id')->constrained('reclamations')->cascadeOnDelete(); $table->string('name'); $table->integer('quantity'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('reclamation_details'); } };