@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

@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 @endforeach
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

@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 @endforeach
Fecha Valor Factura Descripcion Tipo
{{$dt->fecha}} Q. {{number_format($dt->valor, 2)}} {{$dt->factura}} {{$dt->descripcion}} GASTO {{$dt->tipo}}

Total: Q. {{number_format($t_gasto, 2)}}

ABONOS BOLSA

@foreach ($abonos as $a ) @php $t_abono += $a->valor; @endphp @endforeach
# 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}}
@endsection