...

{{ $empresa->nombreorganizacion }}

{{ $empresa->RFC }}

{{ $empresa->paginaweb }}

Venta

Cliente:{{ $venta->cliente->razon_social }}

RFC:{{ $venta->cliente->rfc }}


Fecha: {{ $venta->fecha }}

Folio: {{ $venta->serie }} - {{ $venta->folio }}

@foreach ($venta->items as $i) @endforeach
Cant. Descripción P.Unitario Subtotal Total
{{ $i->cantidad }} {{ $i->descripcion }} ${{ number_format($i->precio_unitario,2) }} ${{ number_format($i->subtotal,2) }} ${{ number_format($i->subtotal,2) }}

Descuentos: ${{ number_format($venta->descuento,2) }}

Neto:${{ number_format($venta->subtotal,2) }}

@foreach ($impues as $impue => $value)

{{ $impue }}:$ {{ number_format($value,2) }}

@endforeach

Total:${{ number_format($venta->total,2) }}


Metodo Pago:{{ $venta->metodo_pago->claveSat }} - {{ $venta->metodo_pago->nombre }}

Forma Pago:{{ $venta->forma_pago }}