Hello, im am learning FilamentPHP and for excersise i am building simple task management application.
I would like to render task informations in modal.
I would like to add comments option for tasks.
I would like to render modal af6er adding comment.
I would like to have some buttons to change task status, assign followers, send email, add note, show notes etc.
I saw somewhere that only one form can be on Action, so I created livewire component and rendered it in modal.that component has HasSchema, HasInfolists, HasForms trait and interface.
In livewire component I added simple form with one field "comment" and created submit method with dd() inside.
When I submit comment, dd is not triggered, but action modal is closed. I need action modal to stay opened until I close it.
I tried adding $action->halt(); but without success.
Is there an option to have Livewire component inside Action (modalContent() method) and option to that Livewire component has multiple form instances?