id(); $table->foreignId('cart_id')->nullable()->constrained('carts'); $table->foreignId('item_id')->nullable()->constrained('items'); $table->string('result')->nullable(); $table->string('status')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { // } };