12 lines
495 B
PHP
12 lines
495 B
PHP
|
@stack($name . '_input_start')
|
||
|
|
||
|
<div class="custom-control custom-checkbox">
|
||
|
<input type="checkbox" class="custom-control-input" id="bulk-action-{{ $id }}" data-bulk-action="{{ $id }}"
|
||
|
:value="{{ $id }}"
|
||
|
v-model="{{ !empty($attributes['v-model']) ? $attributes['v-model'] : 'bulk_action.selected' }}"
|
||
|
v-on:change="onSelect">
|
||
|
<label class="custom-control-label" for="bulk-action-{{ $id }}"></label>
|
||
|
</div>
|
||
|
|
||
|
@stack($name . '_input_end')
|