Files
Ronald Huynen 2547717edb Initial commit
2026-03-23 21:37:59 +01:00

26 lines
866 B
PHP

<div x-data="wireui_inputs_maskable({
isLazy: @boolean($attributes->wire('model')->hasModifier('lazy')),
model: @entangle($attributes->wire('model')).live,
emitFormatted: @boolean($emitFormatted),
mask: {{ $mask }},
})" {{ $attributes->only('wire:key') }}>
<x-dynamic-component
:component="WireUi::component('input')"
:borderless="$borderless"
:shadowless="$shadowless"
:label="$label"
:hint="$hint"
:corner-hint="$cornerHint"
:icon="$icon"
:right-icon="$rightIcon"
:prefix="$prefix"
:suffix="$suffix"
:prepend="$prepend"
:append="$append"
x-model="input"
x-on:input="onInput($event.target.value)"
x-on:blur="emitInput"
{{ $attributes->whereDoesntStartWith(['wire:model.live', 'x-model', 'wire:key']) }}
/>
</div>