Show modal with infolist or form when clicking on a `suffixAction`

Is it possible to show a modal with an infolist or a form when clicking on a suffixAction? Is there any example for this? Also, I want to see if there is a possibility to just navigate to the Edit Form when clicking on a button in the suffixAction
1 Reply
Patrick Boivin
Patrick Boivin11mo ago
I'm not sure you can use an infolist directly in a form... I think you would need to wrap it in a custom Livewire component One way to navigate away from an action is to return a redirect:
->action(fn () => return redirect(...))
->action(fn () => return redirect(...))