attributes['stock']; } public function getUsed(): int { return $this->attributes['used']; } public function getAvailable(): int { return $this->getStock() - $this->getUsed(); } }