@extends('layouts.reporte') @section('content')

MOVIMIENTOS DE CAJA CHICA

MOVIMIENTOS DE ENTRADAS

@php $te = 0; @endphp @foreach($entradas as $ent) @if ($ent->tipo === 'Entrada') @endif @endforeach
Fecha Valor Descripcion Tipo
{{$ent->created_at}} Q. {{number_format($ent->valor, 2)}} {{$ent->descripcion}} {{$ent->tipo}}

TOTAL EN ENTRADAS: Q. {{number_format($te, 2)}}

MOVIMIENTOS DE GASTOS

@php $ts = 0; @endphp @foreach($salidas as $ent) @if ($ent->tipo === 'Salida') @endif @endforeach
Fecha Valor Descripcion Tipo
{{$ent->created_at}} Q. {{number_format($ent->valor, 2)}} {{$ent->descripcion}} {{$ent->tipo}}

TOTAL EN SALIDAS: Q. {{number_format($ts, 2)}}

VENTAS

@foreach ($ventas as $v) @endforeach
ARTICULO CANTIDAD PRECIO DE VENTA SUBTOTAL
{{$v->articulo->nombre}} {{number_format($v->cantidad, 2)}} Q. {{number_format($v->p_venta, 2)}} Q. {{number_format($v->p_venta * $v->cantidad, 2)}}
TOTAL: Q. {{number_format($total, 2)}}

CREDITOS

@foreach ($credito as $a) @endforeach
ESTUDIANTE AUTORIZO MEDIO VALOR FECHA DE PAGO DESCRIPCION FECHA DE CREACION
{{$a->estudiante->nombre}} / {{$a->estudiante->grado}} {{$a->autorizo}} {{$a->medio}} Q. {{number_format($a->valor, 2)}} {{$a->f_pago}} {{$a->descripcion}} {{$a->created_at}}

TOTAL DE CREDITOS: Q. {{number_format($tcr, 2)}}

ABONOS

@foreach ($abonos as $a) @endforeach
ESTUDIANTE VALOR TIPO DESCRIPCION FECHA
{{$a->estudiante->nombre}} / {{$a->estudiante->grado}} Q. {{number_format($a->valor, 2)}} {{$a->tipo}} {{$a->descripcion}} {{$a->created_at}}

TOTAL DE ABONOS: Q. {{number_format($tab, 2)}}

CUADRES DE RECESOS

@foreach ($recesos as $re) @endforeach
RECESO TOTAL PERDIDA CREDITO
{{$re->receso}} Q. {{number_format($re->total, 2)}} Q. {{number_format($re->perdida, 2)}} Q. {{number_format($re->credito, 2)}}

TOTAL EN CUADRES: Q. {{number_format($tr, 2)}}

CIERRES DE CAJA

@foreach ($cierres as $c) @endforeach
USUARIO GASTOS TOTAL EFECTIVO VISA TRANSFERENCIA DEPOSITO OTRO
{{$c->user->name}} Q. {{number_format($c->gastos, 2)}} Q. {{number_format($c->total, 2)}} Q. {{number_format($c->efectivo, 2)}} Q. {{number_format($c->aux1, 2)}} Q. {{number_format($c->aux2, 2)}} Q. {{number_format($c->aux3, 2)}} Q. {{number_format($c->aux4, 2)}}
@csrf @method('DELETE')

RESUMEN

CAJA CHICA: Q. {{number_format($te,2)}}
GASTOS: Q. {{number_format($ts,2)}}
CUADRES RECESO: Q. {{number_format($tr,2)}}
CREDITOS: Q. {{number_format($tcr,2)}}
ABONOS: Q. {{number_format($tab,2)}}

(CAJA CHICA + CUADRES RECESO + ABONOS ) MENOS (GASTOS)

TOTAL A ENTREGAR: Q. {{number_format(($te + $tr + $tab)- $ts, 2)}}

@endsection