{{ $value->direccion }}, {{ $value->ciudad }}, {{ $value->provincia }}.
@endforeachUsuario: {{ $value->cajero }}
Fecha inicio: {{ \Carbon\Carbon::parse($value->fecha_apertura)->format('d M Y h:i:s A')}}
Fecha Cierre: {{ \Carbon\Carbon::parse($value->fecha_cierre)->format('d M Y h:i:s A')}}
| Total Venta: | {{ number_format($value->monto_vendido, 2) }} |
|---|---|
| Efectivo: | RD${{ number_format($value->ventas_efectivo, 2) }} |
| Tarjetas | RD${{ number_format($value->ventas_tarjetas, 2) }} |
| Transferecias | RD${{ number_format($value->ventas_transferencias, 2) }} |
| Cheques | RD${{ number_format($value->ventas_cheques, 2) }} |
| Credito | RD${{ number_format($value->ventas_creditos, 2) }} |
| Nota de Credito: | RD${{ number_format($value->ventas_debito, 2) }} |
| Total en Caja | RD${{ number_format($value->ventas_efectivo + $value->monto_apertura, 2) }} |
| Inicio Caja | RD${{ number_format($value->monto_apertura, 2) }} |
| Pagos efectivo | RD${{ number_format($value->ventas_efectivo, 2) }} |
| Efectivo Reportado: | RD${{ number_format($value->monto_cierre, 2) }} |
| Diferencia | RD${{ number_format($value->ventas_efectivo + $value->monto_apertura - $value->monto_cierre, 2) }} |