logo light

Select All Items in a Dropdown Select

Image Description
By: php coder
  • Published: 15 Apr 2024 Updated: 04 May 2024

Let Users to Select All Options with a Simple Hint Action

Select All Items in a Dropdown Select

When you have a dropdown select with multi select options, you can add a hint action to easily select all options at once.

and this is how you can do it:

1->hintAction(fn (Select $component) => Action::make('select all')
2 ->action(fn () => $component->state(ServiceCenter::pluck('id')->toArray()))
3)
Back to Tricks