id(); $table->foreignId('product_id')->constrained()->onDelete('cascade'); $table->string('branch'); $table->integer('quantity')->default(0); $table->string('unit')->nullable(); // Added unit to stock for flexibility $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('stocks'); } };