@extends('layouts.reportes') @section('content')

REPORTE DE UNIFORME VENDIDO: {{$uniforme->nombre}} Talla: {{$uniforme->talla}}

@foreach ($ventas_agrupadas as $ven ) @php $gan = 0; $gan = $ven->total - ( $ven->p_costo * $ven->cantidad ); $tv += $ven->cantidad; $t_sin += $ven->p_venta * $ven->cantidad; $t_con += $ven->total; $t_des += $ven->descuento; $t_gan += $gan; @endphp @endforeach

Total de Uniformes Vendidos: {{number_format($tv, 2)}}

ARTICULO PRECIO VENTA / UNITARIO CANTIDAD VENDIDA DESCUENTO TOTAL DE VENTA GANANCIA TOTAL
{{$ven->nombre}}
{{$ven->description}}
Q. {{number_format($ven->p_venta,2)}} {{$ven->cantidad}} Q. {{number_format($ven->descuento,2)}} Q. {{number_format($ven->total,2)}}

Total de Ventas Sin Descuentos: Q. {{number_format($t_sin, 2)}}

Total de Ventas Con Descuentos: Q. {{number_format($t_con, 2)}}

Total de Descuentos: Q. {{number_format($t_des, 2)}}

@endsection