id(); $table->integer('productId')->nullable(); $table->integer('customerId')->nullable(); $table->integer('quantity')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('carts'); } };