@if($invoices->count())
@foreach($invoices as $invoice) @endforeach
Invoice # Package Listings Amount Date Action
{{ $invoice->invoice_number }} {{ $invoice->snapshot['title'] ?? '—' }} {{ $invoice->snapshot['limit'] ?? '—' }} listings ${{ number_format($invoice->amount, 2) }} {{ $invoice->paid_at->format('M d, Y') }} View Invoice
{{ $invoices->links() }}
@else

No billing history found.

@endif