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

REPORTE DE ARTICULOS VENDIDIDOS EN EL MES {{$mes}}

@foreach ($ventas as $ven ) @php $gan = 0; $gan = $ven->total - ( $ven->p_costo * $ven->cantidad ); $t_sin += $ven->p_venta * $ven->cantidad; $t_con += $ven->total; $t_des += $ven->descuento; $t_gan += $gan; @endphp @endforeach
RECIBO ARTICULO DESCRIPCION PRECIO COSTO PRECIO VENTA / UNITARIO CANTIDAD VENDIDA DESCUENTO TOTAL DE VENTA GANANCIA TOTAL
{{$ven->factura_id}} {{$ven->nombre}}
{{$ven->description}}
{{$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($t_sin, 2)}}

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

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

Total de Ganancias: Q. {{number_format($t_gan, 2)}}

@endsection