@extends('layouts.reportes') @section('content') @php $t_venta=0; $t_gasto = 0; $t_abono = 0; @endphp

REPORTE DE GANANCIAS DE UNIFORME

UNIFORMES VENDIDOS

@foreach ($ventas as $ven ) @php $gan = 0; $gan = $ven->total - ( $ven->p_costo * $ven->cantidad ); $tu_sin += $ven->p_venta * $ven->cantidad; $tu_con += $ven->total; $tu_des += $ven->descuento; $tu_gan += $gan; @endphp @endforeach
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

@foreach ($compra as $art) @endforeach
# UNIFORME CANTIDAD FECHA DE COMPRA TIPO USUARIO
{{$art->id}} {{$art->nombre}} {{$art->cantidad}} {{$art->created_at}} {{$art->tipo}} {{$art->name}}

GASTOS UNIFORME

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

@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