isDisabled = $condition; return $this; } public function disabledClick(bool | Closure $condition = true): static { $this->isClickDisabled = $condition; return $this; } /** * @deprecated Use `disabledClick()` instead. */ public function disableClick(bool | Closure $condition = true): static { $this->disabledClick($condition); return $this; } public function isDisabled(): bool { return (bool) $this->evaluate($this->isDisabled); } public function isEnabled(): bool { return ! $this->isDisabled(); } public function isClickDisabled(): bool { return (bool) $this->evaluate($this->isClickDisabled); } }