How do you properly nest a Table in a FilamentPHP Form Tab?
Issue Description
I'm using a Filament resource with a form that includes multiple tabs. One of the tabs, "VAT Settings", contains a Filament table rendered through a Livewire component.
Resource Snippet
vat-table-wrapper.blade.php
VatTable Component
vat-table.blade.php
The Problem
When this table is rendered in the ViewField, the form displays correctly and all tabs are editable. However, saving the resource no longer works. Removing the table restores normal save behaviour.
Question
Is it possible to embed a Filament table inside a resource form tab without breaking the parent save functionality?
I'm using a Filament resource with a form that includes multiple tabs. One of the tabs, "VAT Settings", contains a Filament table rendered through a Livewire component.
Resource Snippet
vat-table-wrapper.blade.php
VatTable Component
vat-table.blade.php
The Problem
When this table is rendered in the ViewField, the form displays correctly and all tabs are editable. However, saving the resource no longer works. Removing the table restores normal save behaviour.
Question
Is it possible to embed a Filament table inside a resource form tab without breaking the parent save functionality?