wizard() ->modifyBaseComponentUsing(function (Wizard $component) { $component ->startOnStep($this->getStartStep()) ->cancelAction($this->getCancelFormAction()) ->submitAction($this->getSubmitFormAction()) ->skippable($this->hasSkippableSteps()); }); } protected function getStartStep(): int { return 1; } protected function form(Form $form): Form { return $form->schema($this->getSteps()); } protected function getFormActions(): array { return []; } protected function getSteps(): array { return []; } protected function hasSkippableSteps(): bool { return false; } }