alignment = $alignment; return $this; } public function alignStart(bool | Closure $condition = true): static { return $this->alignment(fn (): ?Alignment => $this->evaluate($condition) ? Alignment::Start : null); } public function alignCenter(bool | Closure $condition = true): static { return $this->alignment(fn (): ?Alignment => $this->evaluate($condition) ? Alignment::Center : null); } public function alignEnd(bool | Closure $condition = true): static { return $this->alignment(fn (): ?Alignment => $this->evaluate($condition) ? Alignment::End : null); } public function alignJustify(bool | Closure $condition = true): static { return $this->alignment(fn (): ?Alignment => $this->evaluate($condition) ? Alignment::Justify : null); } public function alignBetween(bool | Closure $condition = true): static { return $this->alignment(fn (): ?Alignment => $this->evaluate($condition) ? Alignment::Between : null); } public function alignLeft(bool | Closure $condition = true): static { return $this->alignment(fn (): ?Alignment => $this->evaluate($condition) ? Alignment::Left : null); } public function alignRight(bool | Closure $condition = true): static { return $this->alignment(fn (): ?Alignment => $this->evaluate($condition) ? Alignment::Right : null); } public function getAlignment(): Alignment | string | null { return $this->evaluate($this->alignment); } }