@props([
'id' => null,
'name' => null,
'value' => '1',
'checked' => false,
'disabled' => false,
'inputClass' => '',
'label' => null,
'help' => null,
'error' => null,
])
@php
$labelText = $label ?? trim((string) $slot);
$labelClass = collect([
'check-label',
'gap-3',
'disabled:cursor-not-allowed',
$disabled ? 'opacity-45' : null,
])->filter()->implode(' ');
@endphp
@if ($error)
{{ $error }}
@elseif ($help)
{{ $help }}
@endif