akaunting/resources/views/partials/form/checkbox_group.blade.php

30 lines
1.2 KiB
PHP
Raw Normal View History

2018-08-04 19:07:32 +03:00
@stack($name . '_input_start')
2019-11-16 10:21:14 +03:00
<div
class="form-group {{ $col }} {{ isset($attributes['required']) ? 'required' : '' }}"
:class="[{'has-error': {{ isset($attributes['v-error']) ? $attributes['v-error'] : 'form.errors.get(' . $name . ')' }} }]">
{!! Form::label($name, $text, ['class' => 'form-control-label']) !!}
2017-09-14 22:21:00 +03:00
<br/>
@foreach($items as $item)
2019-11-16 10:21:14 +03:00
<div class="custom-control custom-checkbox">
{{ 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
]) }}
<label class="custom-control-label" for="checkbox-{{ $name . '-' . $item->$id}}">
{{ $item->$value }}
</label>
2017-09-14 22:21:00 +03:00
</div>
@endforeach
2019-11-16 10:21:14 +03:00
<div class="invalid-feedback d-block"
v-if="{{ isset($attributes['v-error']) ? $attributes['v-error'] : 'form.errors.has(' . $name . ')' }}"
v-html="{{ isset($attributes['v-error-message']) ? $attributes['v-error-message'] : 'form.errors.get(' . $name . ')' }}">
</div>
2017-09-14 22:21:00 +03:00
</div>
2018-08-04 19:07:32 +03:00
@stack($name . '_input_end')