Reactive table filters without Livewire request
I try to customize a table filter to have a simple filter for all the basic fields and a advanced filter for basics and special cases. So far it is working, but every time I toggle between basic and advanced a request is triggered. What would be the approach to do this in the frontend only without the request?
3 Replies
I think by browsing over other open questions I found something .... https://github.com/filamentphp/filament/blob/3.x/packages/forms/docs/08-advanced.md#dynamic-fields-based-on-a-select-option
GitHub
filament/08-advanced.md at 3.x · filamentphp/filament
Admin panel, form builder and table builder for Laravel. Built with the TALL stack. Designed for humans. - filament/08-advanced.md at 3.x · filamentphp/filament
What would be the approach to do this in the frontend only without the request?It's not possible. That's in the nature of Livewire
Ok, thanks anyway