@extends('layouts.app') @section('content')
Ventas por cliente
| RECIBO | ARTICULO | P. Venta | P. Costo | Fecha de Registro | TOTAL EN VENTA |
|---|---|---|---|---|---|
| {{$ven->factura_id}} | {{$ven->articulo->nombre}} | Q. {{number_format($ven->p_venta, 2)}} | Q. {{number_format($ven->p_costo, 2)}} | {{$ven->created_at}} | Q. {{ number_format($ven->p_venta * $ven->cantidad, 2) }} |
TOTAL: Q. {{number_format($total, 2)}}
@endsection