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