@stack($name . '_input_start')
{!! Form::label($name, $text, ['class' => 'form-control-label']) !!}
@foreach($items as $item)
{{ Form::checkbox($name, $item->$id, null, [ 'id' => 'checkbox-' . $name . '-' . $item->$id, 'class' => 'custom-control-input', 'v-model' => !empty($attributes['v-model']) ? $attributes['v-model'] : 'form.' . $name ]) }}
@endforeach
@stack($name . '_input_end')