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 followed this part of the documentation: https://filamentphp.com/docs/3.x/tables/adding-a-table-to-a-livewire-component#adding-the-table

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.

For more context I'm pasting some screenshots.
image.png
image.png
image.png
image.png
Was this page helpful?