@extends('layouts.reportes') @section('content') @php $t_venta=0; $t_gasto = 0; $t_abono = 0; @endphp
REPORTE DE GANANCIAS DE UNIFORME
UNIFORMES VENDIDOS
RECIBO | ARTICULO | PRECIO COSTO | PRECIO VENTA / UNITARIO | CANTIDAD VENDIDA | DESCUENTO | TOTAL DE VENTA | GANANCIA TOTAL |
---|---|---|---|---|---|---|---|
{{$ven->factura_id}} | {{$ven->nombre}} {{$ven->description}} |
Q. {{number_format($ven->p_costo,2)}} | Q. {{number_format($ven->p_venta,2)}} | {{$ven->cantidad}} | Q. {{number_format($ven->descuento,2)}} | Q. {{number_format($ven->total,2)}} | Q {{number_format($gan, 2)}} |
Total de Ventas Sin Descuentos: Q. {{number_format($tu_sin, 2)}}
Total de Ventas Con Descuentos: Q. {{number_format($tu_con, 2)}}
Total de Descuentos: Q. {{number_format($tu_des, 2)}}
Total de Ganancias: Q. {{number_format($tu_gan, 2)}}
COMPRA DE UNIFORMES
# | UNIFORME | CANTIDAD | FECHA DE COMPRA | TIPO | USUARIO |
---|---|---|---|---|---|
{{$art->id}} | {{$art->nombre}} | {{$art->cantidad}} | {{$art->created_at}} | {{$art->tipo}} | {{$art->name}} |
GASTOS UNIFORME
Fecha | Valor | Factura | Descripcion | Tipo |
---|---|---|---|---|
{{$dt->fecha}} | Q. {{number_format($dt->valor, 2)}} | {{$dt->factura}} | {{$dt->descripcion}} | GASTO {{$dt->tipo}} |
ABONOS UNIFORME
# | Estudiante | Grado | Tipo | Valor | Boleta | Banco | Estado | Descripcion | Usuario |
---|---|---|---|---|---|---|---|---|---|
{{$a->id}} | {{$a->nombre_estudiante}} | {{$a->nombre}} | {{$a->tipo}} | Q. {{number_format($a->valor, 2)}} | {{$a->boleta}} | {{$a->banco}} | {{$a->estado}} | {{$a->name}} |