description = $description; return $this; } public function header(View | Htmlable | Closure | null $header): static { $this->header = $header; return $this; } public function heading(string | Htmlable | Closure | null $heading): static { $this->heading = $heading; return $this; } public function getHeader(): View | Htmlable | null { return $this->evaluate($this->header); } public function getHeading(): string | Htmlable | null { return $this->evaluate($this->heading); } public function getDescription(): string | Htmlable | null { return $this->evaluate($this->description); } }