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

REPORTE DE BOLSA DE UTILES VENDIDO

@for ($i = 0; $i < count($ventas); $i++) @foreach ($ventas[$i] 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; @endphp @endforeach @endfor

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

ARTICULO PRECIO VENTA / UNITARIO CANTIDAD VENDIDA DESCUENTO TOTAL DE VENTA GANANCIA TOTAL
{{$ven->nombre}} 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)}}

@endsection