Strategies for dealing with a very large number of filters on a resource?
I have a client who needs a lot of filters, ie lots of tabular data columns. They have about 10 main filters and 20+ infrequently used filters. I was thinking to show the main ones all the time, and the infrequently used ones in a dropdown, but that doesn't appear possible (see https://github.com/filamentphp/filament/discussions/10702 ).
Does anyone have any other idea on the best way to provide this many filters in a clean way? For them screen real estate is important so having another 3 rows of filters for infrequently used filters isn't a good option.
Does anyone have any other idea on the best way to provide this many filters in a clean way? For them screen real estate is important so having another 3 rows of filters for infrequently used filters isn't a good option.
GitHub
How can I have some filters above the table and some filters in a dropdown? I have tried to call ->filters() twice: a basic one (in a dropdown) and then a filter with layout: FiltersLayout::Abov...