isWizard = true; $this->form($steps); return $this; } public function startOnStep(int | Closure $startStep): static { $this->wizardStartStep = $startStep; return $this; } public function skippableSteps(bool | Closure $condition = true): static { $this->isWizardSkippable = $condition; return $this; } public function isWizard(): bool { return $this->isWizard; } public function isWizardSkippable(): bool { return $this->evaluate($this->isWizardSkippable); } public function getWizardStartStep(): int { return $this->evaluate($this->wizardStartStep); } }