@extends('layouts.reportes') @section('content')
@include('partial.includes.alerts')

CUADRES

@php $t_entradas = 0; $t_salidas = 0; $t_efectivo = 0; $t_tarjeta = 0; $t_deposito = 0; $t_trans = 0; $t_cheque = 0; $t_otros = 0; $t_faltante = 0; @endphp @php $totalMes = 0; @endphp @foreach($cuadres as $cau) @php $t_entradas += $cau->entrada; $t_salidas += $cau->salida; $t_efectivo += $cau->totalEfectico; $t_tarjeta += $cau->totalVisas; $t_deposito += $cau->deposito; $t_trans += $cau->transferencia; $t_cheque += $cau->cheque; $t_otros += $cau->otros; $t_faltante += $cau->faltante; @endphp @endforeach
FECHA ENTRADAS SALIDAS TOTAL A CUADRAR TOTAL EN EFECTIVO TOTAL EN PAGOS CON TARJETA TOTAL EN DEPOSITOS TOTAL EN TRANSFERENCIAS TOTAL EN CHEQUES TOTAL EN OTROS FALTANTE USUARIO ACCIONES
{{$cau->created_at}} Q. {{number_format($cau->entrada, 2)}} Q. {{number_format($cau->salida, 2)}} Q. {{number_format($cau->cuadre, 2)}} Q. {{number_format($cau->totalEfectico, 2)}} Q. {{number_format($cau->totalVisas, 2)}} Q. {{number_format($cau->deposito, 2)}} Q. {{number_format($cau->transferencia, 2)}} Q. {{number_format($cau->cheque, 2)}} Q. {{number_format($cau->otros, 2)}} Q. {{number_format($cau->faltante, 2)}} {{$cau->user->name}} @php $aux = explode(" ", $cau->created_at); $totalMes += $cau->cuadre; @endphp @can('caja_movimientos_dia') @endcan @can('caja_cuadre_delete') @endcan
ENTRADAS SALIDAS TOTAL A CUADRAR TOTAL EN EFECTIVO TOTAL EN PAGOS CON TARJETA TOTAL EN DEPOSITOS TOTAL EN TRANSFERENCIAS TOTAL EN CHEQUES TOTAL EN OTROS FALTANTE
Q. {{number_format($t_entradas, 2)}} Q. {{number_format($t_salidas, 2)}} Q. {{number_format($totalMes, 2)}} Q. {{number_format($t_efectivo, 2)}} Q. {{number_format($t_tarjeta, 2)}} Q. {{number_format($t_deposito, 2)}} Q. {{number_format($t_trans, 2)}} Q. {{number_format($t_cheque, 2)}} Q. {{number_format($t_otros, 2)}} Q. {{number_format($t_faltante, 2)}}

TOTAL EN EL MES: Q. {{number_format($totalMes, 2)}}

@endsection