label = $label; return $this; } public function value($value): static { $this->value = $value; return $this; } public function getLabel(): string|Htmlable { return $this->label; } public function getValue() { return value($this->value); } public function toHtml(): string { return $this->render()->render(); } public function render(): View { return view('filament.components.server-small-data-block', $this->data()); } }