Wizard loses $_GET param after next step
$this->getOrganizationFormComponent()
return Filament\Forms\Components\Wizard
component. Without the ternary in the form method, clicking next works, but with the ternary and type 'organisatie' in the url, clicking next results in the default type and the form glitches because of it. How can I make sure it returns the next step correctly?Solution:Jump to solution
I believe you need to use Livewires
#[Url]
Attribute
```php
use Livewire\Attributes\Url;
...2 Replies
Solution
I believe you need to use Livewires
#[Url]
Attribute
This works, thanks! Had to change protected to public.