|
Total ingresos registrados
${{ number_format($totalIngresos, 2) }}
|
Total de movimientos
{{ $ingresos->count() }}
|
Total arqueos realizados
{{ $arqueos->count() }}
|
| # | Concepto | Tipo | Monto | Quien recibe | Quien entrega | Fecha |
|---|---|---|---|---|---|---|
| {{ $i + 1 }} | {{ $ingreso->concepto }} | {{ \App\Models\IngresoCaja::TIPOS_MOVIMIENTO[$ingreso->tipo_movimiento] ?? $ingreso->tipo_movimiento }} | ${{ number_format($ingreso->monto, 2) }} | {{ $ingreso->quien_recibe }} | {{ $ingreso->quien_entrega }} | {{ $ingreso->fecha->format('d/m/Y') }} |
| TOTAL | ${{ number_format($totalIngresos, 2) }} | |||||
| Desglose por tipo de movimiento | |
|---|---|
| {{ \App\Models\IngresoCaja::TIPOS_MOVIMIENTO[$tipo] ?? $tipo }} | ${{ number_format($total, 2) }} |
| # | Tipo | Total general | Fecha | Hora | Denominaciones |
|---|---|---|---|---|---|
| {{ $i + 1 }} | {{ \App\Models\ArqueoCaja::TIPOS_ARQUEO[$arqueo->tipo_arqueo] ?? $arqueo->tipo_arqueo }} | ${{ number_format($arqueo->total_general, 2) }} | {{ $arqueo->fecha->format('d/m/Y') }} | {{ \Illuminate\Support\Str::substr($arqueo->hora_movimiento, 0, 5) }} |
@foreach($arqueo->denominaciones as $den)
{{ \App\Models\ArqueoCaja::TIPOS_DENOMINACION[$den->tipo] ?? ucfirst($den->tipo) }}
${{ number_format($den->denominacion, 0) }}
x{{ $den->cantidad }} = ${{ number_format($den->total, 2) }} @endforeach |
| Responsable de caja | Coordinación / Gerencia |