schema([ Wizard::make($this->getSteps()) ->startOnStep($this->getStartStep()) ->cancelAction($this->getCancelFormAction()) ->submitAction($this->getSubmitFormAction()) ->skippable($this->hasSkippableSteps()), ]) ->columns(null); } /** * @return array */ public function getFormActions(): array { return []; } public function getSteps(): array { return []; } protected function hasSkippableSteps(): bool { return false; } }