hckwnn
Summary step for wizard?
Hello,
Before V3 update, I used Placeholders in the Summary Step. You can fill them with the data array containing the form state path.
You can write a first step:
TextInput::make('name')
And the summary step:
Placeholder::make('summary_name')->content($this->data['name'] ?? '')->label('Name')
You can use $this->getRecord()->name if you don't want to define an form state path array.
Dont know if it is the best way today. But works fine for me17 replies