@extends('layouts.simple') @section('content') @php $t = 0; @endphp @foreach ($recesos as $r) @endforeach
CIERRE DE CAJA
MOVIMIENTO DE CAJA
TOTAL DE CAJA CHICA: Q. {{number_format($entradas, 2)}}
TOTAL DE GASTOS: Q. {{number_format($salidas, 2)}}
TOTAL DE CUADRES DE CAJA: Q. {{number_format($t, 2)}}
TOTAL DE CREDITO: Q. {{number_format($tc, 2)}}
ABONOS
TOTAL DE EFECTIVO: Q. {{number_format($efectivo->total, 2)}}
TOTAL DE VISA: Q. {{number_format($visa->total, 2)}}
TOTAL DE TRANS: Q. {{number_format($trans->total, 2)}}
TOTAL DE DEPO: Q. {{number_format($depo->total, 2)}}
TOTAL DE OTRO: Q. {{number_format($otro->total, 2)}}
PARA CUADRAR: SUMA (ABONOS (EFECTIVO, VISAS, TRANSFERENCIAS, DEPOSITOS, OTROS), CAJA CHICA, CUADRES DE RECESO) MENOS (GASTOS)
TOTAL A CUADRAR: Q. {{number_format( ($entradas + $t + $efectivo->total + $visa->total + $trans->total + $depo->total + $otro->total) - $salidas,2)}}