35 lines
1.1 KiB
PHP
35 lines
1.1 KiB
PHP
@php
|
|
$fieldWrapperView = $getFieldWrapperView();
|
|
$statePath = $getStatePath();
|
|
$attributes = $attributes
|
|
->merge([
|
|
'autofocus' => $isAutofocused(),
|
|
'disabled' => $isDisabled(),
|
|
'id' => $getId(),
|
|
'required' => $isRequired() && (! $isConcealed()),
|
|
'wire:loading.attr' => 'disabled',
|
|
$applyStateBindingModifiers('wire:model') => $statePath,
|
|
], escape: false)
|
|
->merge($getExtraAttributes(), escape: false)
|
|
->merge($getExtraInputAttributes(), escape: false)
|
|
->class([
|
|
'fi-checkbox-input',
|
|
'fi-valid' => ! $errors->has($statePath),
|
|
'fi-invalid' => $errors->has($statePath),
|
|
]);
|
|
@endphp
|
|
|
|
<x-dynamic-component
|
|
:component="$fieldWrapperView"
|
|
:field="$field"
|
|
:inline-label-vertical-alignment="\Filament\Support\Enums\VerticalAlignment::Center"
|
|
>
|
|
@if ($isInline())
|
|
<x-slot name="labelPrefix">
|
|
<input type="checkbox" {{ $attributes }} />
|
|
</x-slot>
|
|
@else
|
|
<input type="checkbox" {{ $attributes }} />
|
|
@endif
|
|
</x-dynamic-component>
|