@extends('client.layouts.app') @section('content')

Mis Facturas

Total Facturado ${{ number_format($totalFacturado, 2) }}
Pendiente ${{ number_format($totalPendiente, 2) }}
Limpiar
@forelse($facturas as $factura) @empty @endforelse
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
{{ $facturas->appends(request()->query())->links() }}
@endsection