@extends('index') @section('estilos') @endsection @section('contenido')
CAJA: {{ $caja['descripCaja'] }}
{{ date('d/m/Y') }}
INGRESOS
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
- 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, '.', '') }}
TOTAL EFECTIVO:

S/. {{ number_format($caja['totalCaja'], 2, '.', '') }}

@include('Caja.modalBuscarCaja') @endsection @section('scripts') @endsection