We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fddaff4 commit cdcb337Copy full SHA for cdcb337
1 file changed
prompts.md
@@ -421,6 +421,14 @@ $categories = multiselect(
421
);
422
```
423
424
+You may allow the user to easily select all options via the `canSelectAll` argument:
425
+
426
+$categories = multiselect(
427
+ label: 'What categories should be assigned?',
428
+ options: Category::pluck('name', 'id'),
429
+ canSelectAll: true
430
+);
431
432
<a name="multiselect-required"></a>
433
#### Requiring a Value
434
0 commit comments