Togglebuttons multiple() selects all
I'm just using the sample code from the docs and for some reason all buttons are being selected when you click just one. Anyone else experienced this?
ToggleButtons::make('technologies')
->multiple()
->options([
'tailwind' => 'Tailwind CSS',
'alpine' => 'Alpine.js',
'laravel' => 'Laravel',
'livewire' => 'Laravel Livewire',
])form(Form $form) I don't see this behaviour, so there everything works fine.form(Form $form)->filters([
Filter::make('status')
->form([
ToggleButtons::make('status_id')
->label('Status')
->multiple()
->options([
'1' => 'Pending',
'2' => 'Reviewing',
'3' => 'Accepted',
'4' => 'Declined',
])
->inline(),
])
], layout: FiltersLayout::AboveContent)