@extends('layouts.reporte') @section('content')
MOVIMIENTOS DE CAJA CHICA
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)}}
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
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
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
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
RECESO | TOTAL | CREDITO |
---|---|---|
{{$re->receso}} | Q. {{number_format($re->total, 2)}} | Q. {{number_format($re->credito, 2)}} |
TOTAL EN CUADRES: Q. {{number_format($tr, 2)}}
CIERRES DE CAJA
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)}} |
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)}}