'Einzel', self::Starter => 'Starter', self::Business => 'Business', self::Pro => 'Pro', self::Agency => 'Agency', }; } /** * Leitet das Tier aus einem `plans.slug` ab; unbekannt/kein Abo → Einzel. */ public static function fromPlanSlug(?string $slug): self { return self::tryFrom((string) $slug) ?? self::Einzel; } }