| DIR: /home/cardxfeb/www/resources/views/sadmin/vcards/columns/ |
| Current File : //home/cardxfeb/www/resources/views/sadmin/vcards/columns/verified.blade.php |
<div>
@php
$checked = $row->is_verified == 1 ? 'checked' : '';
@endphp
<label class="form-check form-switch justify-content-center cursor-pointer">
<input name="is_verified" data-id="{{ $row->id }}" class="form-check-input vcards-verified cursor-pointer"
type="checkbox" value="1" {{ $checked }}>
<span class="switch-slider" data-checked="✓" data-unchecked="✕"></span>
</label>
</div>
|