hiddenFrom = $breakpoint; return $this; } public function visibleFrom(string | Closure | null $breakpoint): static { $this->visibleFrom = $breakpoint; return $this; } public function getHiddenFrom(): ?string { return $this->evaluate($this->hiddenFrom); } public function getVisibleFrom(): ?string { return $this->evaluate($this->visibleFrom); } }