I’m using a Livewire component as the content of a Filament modal (modalContent).
Specifically, I’m embedding the Livewire component inside a Blade view, and then passing that view to modalContent().
The problem is: when I click the form submit button inside my Livewire component, it does not trigger the create method in the Livewire component class.
Instead, the submission gets intercepted by the Filament modal’s action handler (the ->action() method defined on the modal).