© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•3y ago•
5 replies
buzkall

Wrong indicator in SelectFilter with multiple and translatable

Using the latest version (3.0.82) I'm having an issue with the filter indicator if I use the multiple option.
With single select filter, the indicator is shown in the active locale, but the multiple one, it shows the json

 ->filters([
      Tables\Filters\SelectFilter::make('gender')
          ->multiple()
          ->preload()
          ->relationship('gender', 'name')
          ->getOptionLabelFromRecordUsing(fn($record) => $record->name),

      Tables\Filters\SelectFilter::make('maritalStatus')
          ->preload()
          ->relationship('maritalStatus', 'name')
          ->getOptionLabelFromRecordUsing(fn($record) => $record->name),
 ->filters([
      Tables\Filters\SelectFilter::make('gender')
          ->multiple()
          ->preload()
          ->relationship('gender', 'name')
          ->getOptionLabelFromRecordUsing(fn($record) => $record->name),

      Tables\Filters\SelectFilter::make('maritalStatus')
          ->preload()
          ->relationship('maritalStatus', 'name')
          ->getOptionLabelFromRecordUsing(fn($record) => $record->name),
2023-10-22_at_19.15.02.png
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

How to change SelectFilter indicator
FilamentFFilament / ❓┊help
3y ago
SelectFilter Not Filtering when Multiple
FilamentFFilament / ❓┊help
2y ago
How to search in multiple fields in v3 SelectFilter?
FilamentFFilament / ❓┊help
3y ago