{{ $componentName }} | ${{ number_format($totalCashier, 0, ',', '.') }}

@if ($errorMessage) @endif

Ingresar cantidad de efectivo

@php $denominations = [20000, 10000, 5000, 2000, 1000, 500, 100, 50, 10, 5, 1]; @endphp @foreach ($denominations as $denomination)
${{ number_format($denomination, 0, ',', '.') }}
@endforeach
Total
${{ number_format($totalCash, 0, ',', '.') }}

Ingrese montos por tipos de pago

@foreach ($paymentTypes as $key => $paymentType) @if ($paymentType->name != 'Efectivo')
{{ $paymentType->name }}
get_automatic_values ? 'disabled' : '' }}>
@endif @endforeach
Total
${{ number_format($totalPayment, 0, ',', '.') }}
@include('livewire.tenant.caja.form.detail-closed') @include('livewire.tenant.common.modalCashFlow')