How to add a custom action to my custom Wizard?
I've implemented a CustomWizard extending the Filament Wizard. Including my own blade file.
Next to the
If I try to include this action there, the button is added, but the
Another option would be to add additional submit buttons, but I'd have to know how to distinguish them in the backend.
Any help is appreciated.
Next to the
{{ $getSubmitAction() }} I'd like some additional actions.If I try to include this action there, the button is added, but the
->action() inside never gets called. Giving it a ->url() works, but I'd prefer to solve this the Livewire way.Another option would be to add additional submit buttons, but I'd have to know how to distinguish them in the backend.
Any help is appreciated.