Save edit form with two fields: Select & Livewire table component
Hi friends, I've a situation where a form contains a native field "Select" and a custom one (a table injected via Livewire component) and I can't save what I edit in the form containing the Livewire injected table (I don't get any kind of error. Just it doesn't work...). If I remove (or comment) the Livewire field containging the table, the form saving works correctly.
I've these three files: 1. EventResource (binding Event model) -> I want to edit the form of this resource (containing a Livewire table injected of 2. ListPlayers (a Livewire component that implements HasForms, HasTable) 3. list-players.blade.php (a Livewire view file for the render)
Two models Event and Player, Player is related to the Event via event_id foreign key.