@extends('index') @section('estilos') @endsection @section('contenido')
| SALDO INICIAL S/. | S/. {{ number_format($caja['saldoinicial'], 2, '.', '') }} |
| + INGRESOS S/. | S/. {{ number_format($caja['ingresos'], 2, '.', '') }} |
| + VENTAS S/. | S/. {{ number_format($caja['ventas'], 2, '.', '') }} |
| TOTAL INGRESOS S/. | S/. {{ number_format($caja['saldoinicial'] + $caja['ingresos'] + $caja['ventas'], 2, '.', '') }} |
| - EGRESOS S/. | S/. {{ number_format($caja['egresos'], 2, '.', '') }} |
| - YAPE S/. | S/. {{ number_format($caja['yape'], 2, '.', '') }} |
| - TARJETA S/. | S/. {{ number_format($caja['tarjeta'], 2, '.', '') }} |
| - PLIM S/. | S/. {{ number_format($caja['plim'], 2, '.', '') }} |
| - TRANSFERENCIA S/. | S/. {{ number_format($caja['transferencia'], 2, '.', '') }} |
| TOTAL EGRESOS S/. | S/. {{ number_format($caja['egresos'] + $caja['yape'] + $caja['tarjeta'] + $caja['plim'] + $caja['transferencia'], 2, '.', '') }} |