REPORTE DE GANANCIAS DE BOLSA
VENTA DE BOLSA DE UTILES
@foreach ($ventas as $ven ) @php $gan = 0; $gan = $ven->total - ( $ven->p_costo * $ven->cantidad ); $tb_sin += $ven->p_venta * $ven->cantidad; $tb_con += $ven->total; $tb_des += $ven->descuento; $tb_gan += $gan; @endphp @endforeachRECIBO | 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
@foreach ($compra as $art) @endforeach# | BOLSA | CANTIDAD | FECHA DE COMPRA | TIPO | USUARIO |
---|---|---|---|---|---|
{{$art->id}} | {{$art->nombre}} | {{$art->cantidad}} | {{$art->created_at}} | {{$art->tipo}} | {{$art->name}} |
GASTOS BOLSA
@foreach ($gastos as $dt) @php $t_gasto += $dt->valor; @endphp @endforeachFecha | 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}} |