Cliente: {{ $cliente->nombre }}
RFC: {{ $cliente->rfc }}
@if($cliente->telefono)Teléfono: {{ $cliente->telefono }}
@endif @if($cliente->correo)Correo: {{ $cliente->correo }}
@endif| Folio | Fecha | Método Pago | Total | Pagado | Pendiente | Estatus | Pagado |
|---|---|---|---|---|---|---|---|
| {{ $factura->folio }} | {{ $factura->fecha_factura }} | {{ $factura->metodo_pago }} | ${{ number_format($factura->total, 2) }} | ${{ number_format($factura->saldo_pagado, 2) }} | ${{ number_format($factura->saldo_pendiente, 2) }} | {{ $factura->estatus_sat }} | {{ $factura->pagado ? 'Sí' : 'No' }} |
Total Facturado: ${{ number_format($totales['total'], 2) }}
Total Pagado: ${{ number_format($totales['pagado'], 2) }}
Total Pendiente: ${{ number_format($totales['pendiente'], 2) }}