2023-11-20 10:35:31 +00:00
|
|
|
<div class="px-2 form-control min-w-fit hover:bg-coolgray-100">
|
2023-07-28 07:10:35 +00:00
|
|
|
<label class="flex gap-4 px-0 cursor-pointer label">
|
2023-07-13 11:16:24 +00:00
|
|
|
<span class="flex gap-2 label-text min-w-fit">
|
|
|
|
@if ($label)
|
|
|
|
{{ $label }}
|
|
|
|
@else
|
|
|
|
{{ $id }}
|
|
|
|
@endif
|
|
|
|
@if ($helper)
|
2023-11-20 10:37:09 +00:00
|
|
|
<x-helper :helper="$helper" />
|
2023-07-13 11:16:24 +00:00
|
|
|
@endif
|
|
|
|
</span>
|
|
|
|
<input @disabled($disabled) type="checkbox" {{ $attributes->merge(['class' => $defaultClass]) }}
|
2023-09-07 11:23:34 +00:00
|
|
|
@if ($instantSave) wire:loading.attr="disabled" wire:click='{{ $instantSave === 'instantSave' || $instantSave == '1' ? 'instantSave' : $instantSave }}'
|
2023-12-07 18:06:32 +00:00
|
|
|
wire:model={{ $id }} @else wire:model={{ $value ?? $id }} @endif />
|
2023-07-13 11:16:24 +00:00
|
|
|
</label>
|
2023-06-14 11:07:58 +00:00
|
|
|
</div>
|