Trigger Wizard next step via Action

I have a form, where I send a notification an a specific update:

Notification::make()
->title('In the next step you could also use XXX')
->info()
->actions([
NotificationAction::make('To next step')
->button()
NotificationAction::make('Abbrechen')
->button()
->extraAttributes(['x-on:click' => 'close']),
])
->send();

How can i achieve in the first NotificationAction to try to move an to the next Step?
Solution
Check out this message thread, It may be what you are looking for:
How to Programmatically Navigate to a Specific Step in a Wizard
Was this page helpful?