{{-- ══════════════════════════════ HEADER ══════════════════════════════ --}}
Logo

{{ $empresa->nombreorganizacion }}

■ RFC: {{ $empresa->RFC }}

@if($empresa->paginaweb)

■ {{ $empresa->paginaweb }}

@endif @if(isset($empresa->telefono) && $empresa->telefono)

■ {{ $empresa->telefono }}

@endif @if(isset($empresa->email) && $empresa->email)

■ {{ $empresa->email }}

@endif
{{-- ══════════════════════════════ BARRA DE TÍTULO + FOLIO ══════════════════════════════ --}}
▶ Comprobante de Venta
Folio: {{ $venta->serie }} – {{ $venta->folio }}
{{-- ══════════════════════════════ TARJETAS CLIENTE / DOCUMENTO ══════════════════════════════ --}}
◤ Datos del cliente

Razón social

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

RFC

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

@if(isset($venta->cliente->domicilio) && $venta->cliente->domicilio)

Domicilio

{{ $venta->cliente->domicilio }}

@endif
◤ Datos del documento

Fecha de emisión

{{ $venta->fecha }}

Condiciones de pago

{{ $venta->forma_pago }}

✓ Documento emitido
{{-- ══════════════════════════════ TABLA DE PRODUCTOS ══════════════════════════════ --}} @foreach ($venta->items as $i) @endforeach
Cant. Descripción P. Unitario Desc. Subtotal Total
{{ intval($i->cantidad) }} {{ $i->descripcion }} ${{ number_format($i->precio_unitario, 2) }} ${{ isset($i->descuento) ? number_format($i->descuento, 2) : '0.00' }} ${{ number_format($i->subtotal, 2) }} ${{ number_format($i->subtotal, 2) }}
{{-- ══════════════════════════════ PAGO + TOTALES ══════════════════════════════ --}} {{-- Pago + Totales en la misma fila, vertical-align top forzado inline --}}
◤ Información de pago
Método: {{ $venta->metodo_pago->claveSat }} — {{ $venta->metodo_pago->nombre }}
Forma de pago: {{ $venta->forma_pago }}
Moneda: MXN — Peso mexicano
@foreach ($impues as $nombre => $monto) @endforeach
■ Subtotal neto ${{ number_format($venta->subtotal, 2) }}
■ Descuentos − ${{ number_format($venta->descuento, 2) }}
■ {{ $nombre }} ${{ number_format($monto, 2) }}
▶ TOTAL ${{ number_format($venta->total, 2) }}
{{-- ══════════════════════════════ OBSERVACIONES ══════════════════════════════ --}} @if($venta->observaciones)
◤ Observaciones
{{ $venta->observaciones }}
@endif {{-- ══════════════════════════════ FOOTER ══════════════════════════════ --}}