LeandroFerreira
Help with form outside Panel
I think you should add
->statePath('data')
to the form..
https://filamentphp.com/docs/3.x/forms/adding-a-form-to-a-livewire-component#adding-the-form13 replies
Conditionally hide SelectColumn based on email domain
maybe
->extraAttributes(fn (YourModel $record) => ['class' => str_ends_with($record->email, '@mycompany.com') ? '' : 'hidden'])
use lifecycle hooks to verify the values...8 replies