Files
einundzwanzig-portal/resources/views/vendor/wireui/components/inputs/currency.blade.php
2022-11-30 00:04:07 +01:00

28 lines
959 B
PHP

<div x-data="wireui_inputs_currency({
isLazy: @boolean($attributes->wire('model')->hasModifier('lazy')),
model: @entangle($attributes->wire('model')),
emitFormatted: @boolean($emitFormatted),
thousands: '{{ $thousands }}',
decimal: '{{ $decimal }}',
precision: {{ $precision }},
})" {{ $attributes->only('wire:key') }}>
<x-dynamic-component
:component="WireUi::component('input')"
{{ $attributes->whereDoesntStartWith(['wire:model', 'wire:key'])->except('type') }}
: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="mask($event.target.value)"
x-on:blur="emitInput($event.target.value)"
/>
</div>