| Folio | Cliente | Fecha | Método Pago | Subtotal | IVA | Total | Pagado | Pendiente | Estatus |
|---|---|---|---|---|---|---|---|---|---|
| {{ $factura->folio }} | {{ $factura->cliente->alias ?? $factura->cliente->nombre ?? 'N/A' }} | {{ $factura->fecha_factura }} | {{ $factura->metodo_pago }} | ${{ number_format($factura->subtotal, 2) }} | ${{ number_format($factura->iva, 2) }} | ${{ number_format($factura->total, 2) }} | ${{ number_format($factura->saldo_pagado, 2) }} | ${{ number_format($factura->saldo_pendiente, 2) }} | {{ $factura->estatus_sat }} |
Subtotal: ${{ number_format($totales['subtotal'], 2) }}
IVA: ${{ number_format($totales['iva'], 2) }}
Total: ${{ number_format($totales['total'], 2) }}
Pagado: ${{ number_format($totales['pagado'], 2) }}
Pendiente: ${{ number_format($totales['pendiente'], 2) }}