label = $label; return $this; } public function translateLabel(bool $shouldTranslateLabel = true): static { $this->shouldTranslateLabel = $shouldTranslateLabel; return $this; } public function getLabel(): string | Htmlable { $label = $this->evaluate($this->label) ?? (string) str($this->getName()) ->beforeLast('.') ->afterLast('.') ->kebab() ->replace(['-', '_'], ' ') ->ucfirst(); return $this->shouldTranslateLabel ? __($label) : $label; } }