K

Formuláře

CheckboxList

Více checkboxů z pole options.

CheckboxList preview
Na této stránce

Více checkboxů z pole options.

use NyonCode\WireForms\Components\CheckboxList;

Použití

CheckboxList::make('permissions')
->options([
'create' => 'Create',
'read' => 'Read',
'update' => 'Update',
'delete' => 'Delete',
])
->columns(2)
->searchable()
->bulkToggleable()

Dynamické options

CheckboxList::make('roles')
->options(fn () => Role::pluck('name', 'id')->toArray())

Options z enumu

Předejte třídu PHP enumu pro rozvinutí jeho case na options value => label. Labely pocházejí z getLabel(), když enum implementuje Foundation\Contracts\Enum\HasLabel, jinak se z názvu case udělá headline. Detaily viz Select › Options z enumu.

CheckboxList::make('permissions')->options(Permission::class)

Vícesloupcový layout

CheckboxList::make('features')
->options([...])
->columns(3)

Hledání

CheckboxList::make('permissions')
->options([...])
->searchable()
->searchPrompt('Filter permissions...')

Hromadné přepnutí

CheckboxList::make('permissions')
->bulkToggleable()
->selectAllLabel('Select All')
->deselectAllLabel('Deselect All')

Seskupené options

Při použití groups() je každý klíč nadpisem skupiny a jeho hodnota je pole párů value => label.

CheckboxList::make('permissions')
->groups([
'Posts' => ['create_post' => 'Create', 'edit_post' => 'Edit', 'delete_post' => 'Delete'],
'Users' => ['create_user' => 'Create', 'edit_user' => 'Edit'],
])

Volání groups() automaticky zapne seskupený layout. Můžete také zavolat grouped() explicitně.

Metody

Metoda Typ Popis
options(array|string|Closure) array Seznam options nebo třída enumu (value => label)
columns(int) int Počet sloupců (výchozí 1)
searchable(bool) bool Zapnout hledací box filtr-podle-labelu
searchPrompt(string|null) string Placeholder hledacího inputu
bulkToggleable(bool) bool Zobrazit ovládání select-all / deselect-all
selectAllLabel(string|null) string Label tlačítka select-all
deselectAllLabel(string|null) string Label tlačítka deselect-all
grouped(bool) bool Zapnout seskupený layout
groups(array|Closure) array Definice skupin (také zapíná seskupený layout)
default(array|Closure) array Předvybrané hodnoty
disabled(bool|Closure) bool Znepřístupnit všechny checkboxy
required() Označit jako povinné
live() Spustit Livewire update při změně

Label, hint, tooltip a další sdílené metody viz Společné API pole.