Efectivo ({{ $cantidad['efectivo'] }}) |
${{ number_format($pagos['efectivo'],0,'.','.') }} |
Tarjeta ({{ $cantidad['tarjeta'] }}) |
${{ number_format($pagos['tarjeta'],0,'.','.') }} |
Transferencia ({{ $cantidad['transferencia'] }}) |
${{ number_format($pagos['transferencia'],0,'.','.') }} |
TOTAL VENTAS |
@php
$total = $pagos['efectivo'] + $pagos['tarjeta'] + $pagos['transferencia']
@endphp
${{ number_format($total,0,'.','.') }} |
Saldo inicial
Último cierre: {{ $fecha_inicial }}
|
|
Gastos |
-${{ number_format($gasto_total,0,'.','.') }}
|
SALDO CAJA CALCULADO
(Saldo inicial + efectivo - Gastos)
|
@php
$total = $pagos['efectivo'] + $saldo_inicial - $gasto_total;
@endphp
@if($total >= 0)
${{ number_format($total,0,'.','.') }} |
@else
-${{ number_format($total * -1,0,'.','.') }} |
@endif
SALDO CAJA REAL |
|
RETIRO |
|
SALDO FINAL |
-- |