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