@extends('layouts.reportes') @section('content') @php $t_venta=0; $t_gasto = 0; $t_abono = 0; @endphp
REPORTE DE GANANCIAS DE BOLSA
VENTA DE BOLSA DE UTILES
RECIBO | ARTICULO | PRECIO COSTO | PRECIO VENTA / UNITARIO | CANTIDAD VENDIDA | DESCUENTO | TOTAL DE VENTA | GANANCIA TOTAL |
---|---|---|---|---|---|---|---|
{{$ven->factura_id}} | {{$ven->nombre}} @php echo $ven->decripcion; @endphp |
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($tb_sin, 2)}}
Total de Ventas Con Descuentos: Q. {{number_format($tb_con, 2)}}
Total de Descuentos: Q. {{number_format($tb_des, 2)}}
Total de Ganancias: Q. {{number_format($tb_gan, 2)}}
COMPRA DE BOLSA DE UTILES
# | BOLSA | CANTIDAD | FECHA DE COMPRA | TIPO | USUARIO |
---|---|---|---|---|---|
{{$art->id}} | {{$art->nombre}} | {{$art->cantidad}} | {{$art->created_at}} | {{$art->tipo}} | {{$art->name}} |
GASTOS BOLSA
Fecha | Valor | Factura | Descripcion | Tipo |
---|---|---|---|---|
{{$dt->fecha}} | Q. {{number_format($dt->valor, 2)}} | {{$dt->factura}} | {{$dt->descripcion}} | GASTO {{$dt->tipo}} |
ABONOS BOLSA
# | 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}} |