id(); $table->string('status')->nullable(); $table->string('labkit_delivery_status')->nullable(); $table->foreignId('cart_id')->constrained('carts')->onDelete('cascade'); $table->foreignId('plans_id')->constrained('plans_v1')->onDelete('cascade'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('items'); } };