@extends('clients.layouts.app') @section('title', 'Billing & Invoices') @section('content')

Billing

Manage your payments and history

Credit Balance

$0.00 USD

@forelse($invoices['invoices']['invoice'] ?? [] as $invoice) @empty @endforelse
Invoice # Date Generated Due Date Total Status Actions

#{{ $invoice['invoicenumber'] ?? $invoice['invoicenum'] ?? $invoice['id'] }}

{{ $invoice['date'] }} {{ $invoice['duedate'] }}

{{ $invoice['total'] }}

{{ $invoice['currencycode'] ?? 'USD' }}

{{ $invoice['status'] }}
@if(strtolower($invoice['status']) === 'unpaid') Pay Now @endif

No billing history

Your invoices will appear here once generated.

@endsection