Html::checkboxList('season', false, ['Зима', 'Лето', 'Демисезон']])
Html::checkboxList(
'attribute',
false,
$options,
[
'item' => function($index, $label, $name, $checked, $value) {
$checkedLabel = $checked ? 'checked' : '';
$inputId = str_replace(['[', ']'], ['', ''], $name) . '_' . $index;
return "<div><input type='checkbox' name=$name value=$value id=$inputId $checkedLabel>"
. "<label for=$inputId>$label</label></div>";
}
]
);
Html::checkboxList('season', false, ['Зима', 'Лето', 'Демисезон'],['template' => '{input}{label}'])