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),


bulkToggleable not working properly 🤔
Was this page helpful?