Bulk action permission fixed and badge style.
This commit is contained in:
@ -1,7 +1,12 @@
|
||||
@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 }}"
|
||||
<input type="checkbox" class="custom-control-input" id="bulk-action-{{ $id }}"
|
||||
@if (isset($attributes['disabled']))
|
||||
:disabled="{{ ($attributes['disabled']) ? true : false }}"
|
||||
@else
|
||||
data-bulk-action="{{ $id }}"
|
||||
@endif
|
||||
:value="{{ $id }}"
|
||||
v-model="{{ !empty($attributes['v-model']) ? $attributes['v-model'] : 'bulk_action.selected' }}"
|
||||
v-on:change="onSelect">
|
||||
|
Reference in New Issue
Block a user