@extends('layouts.reportes') @section('content')
REPORTE DE BOLSA DE UTILES VENDIDO
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