© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•3y ago•
15 replies
BlackShadow

CheckboxList bulkToggleable Reactive

Select::make('country_id')
  ->label(__('Country'))
  ->searchable()
  ->reactive()
  ->options(Country::all()->pluck('name', 'id')->toArray()),

CheckboxList::make('provinces')
  ->relationship('provinces', 'name', fn($query, Closure $get) => $query->where('country_id', $get('country_id')))
  ->bulkToggleable()
  ->columns(3),
Select::make('country_id')
  ->label(__('Country'))
  ->searchable()
  ->reactive()
  ->options(Country::all()->pluck('name', 'id')->toArray()),

CheckboxList::make('provinces')
  ->relationship('provinces', 'name', fn($query, Closure $get) => $query->where('country_id', $get('country_id')))
  ->bulkToggleable()
  ->columns(3),


bulkToggleable not working properly 🤔
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

CheckboxList bulkToggleable
FilamentFFilament / ❓┊help
3y ago
Problem with CheckboxList and bulkToggleable
FilamentFFilament / ❓┊help
3y ago
CheckboxList bulkToggleable is not working
FilamentFFilament / ❓┊help
3y ago
CheckBoxList
FilamentFFilament / ❓┊help
3y ago