hideStepTabs = $condition; return $this; } /** * Add a description for the current step */ public function currentStepDescription(?string $description): static { $this->currentStepDescription = $description; return $this; } /** * Get whether the step tabs should be hidden */ public function areStepTabsHidden(): bool { return $this->hideStepTabs; } /** * Get the description for the current step */ public function getCurrentStepDescription(): ?string { return $this->currentStepDescription; } }