I'm looking to use a template for my checkboxList. I'm using templates on other ActiveForm fields but it doesn't seem to work on checkboxList field.
I just need to get the input set to col-sm-7 instead of 6.
<?= $form->field($model, 'days', [
'template' => "<div class='col-sm-3'>{label}</div><div class='col-sm-7'>
{input}</div>
{hint}
{error}"])
->inline()
->checkboxList(Onlinestore::$days, []) ?>
</div>