@extends('client.layouts.app') @section('content')
| Folio | UUID | Total | Pagado | Pendiente | Metodo Pago | Fecha | Acciones |
|---|---|---|---|---|---|---|---|
| {{ $factura->folio }} | {{ Str::limit($factura->uuid, 20) }} | ${{ number_format($factura->total, 2) }} | ${{ number_format($factura->saldo_pagado, 2) }} | @if($factura->saldo_pendiente > 0) ${{ number_format($factura->saldo_pendiente, 2) }} @else Pagado @endif | {{ $factura->metodo_pago }} | {{ $factura->created_at->format('d/m/Y') }} | XML |
| No hay facturas | |||||||