Filters like Excel Auto Filter

I've been searching and looks like there's nothing like that around. About implementing it on my own: is it possible to change the filters above the tables from Text to a custom something? or this kind of filter would be impossible right now? I'm talking about the checkboxes + search of it Thanks!
4 Replies
awcodes
awcodes2y ago
#filter-sets maybe. Filament isn’t a replacement for excel.
Kenneth Sese
Kenneth Sese2y ago
If you’re referring to be able to populate the filter with all the values of a specific column you can do:
SelectFilter::make('column')->multiple()->options(fn () => Model::query()->distinct()->pluck('column', 'column'))
SelectFilter::make('column')->multiple()->options(fn () => Model::query()->distinct()->pluck('column', 'column'))
Picolé
PicoléOP2y ago
yeah it makes sense, but with the filters panel in each column (instead of just a textbox) it could almost replace it :P I asked it because my main problem is: I have more than 30 filters and the filter box is so small that's impossible to make it fit in there even if I make the box bigger, it gonna be impossible to see the actual table filter changing live the #filter-sets was a good tip because having more than 30 filters and doing all the filters again and again is a pain, so thanks for the recommendation I'll still try to figure out some way to have so many filters tho
Kenneth Sese
Kenneth Sese2y ago
Filament
Filters - Table Builder - Filament
The elegant TALL stack table builder for Laravel artisans.

Did you find this page helpful?