{{ __('Invoices') }}

{{ __('Download PDF invoices for every successful payment.') }}

@forelse($payments as $p) @empty @endforelse
{{ __('Invoice #') }} {{ __('Date') }} {{ __('Description') }} {{ __('Amount') }} {{ __('Status') }} {{ __('Actions') }}
{{ $p->invoice_number ?: '—' }} {{ $p->created_at?->format('M d, Y') }} {{ $p->description }} {{ \App\Helpers\CurrencyHelper::format((float) $p->amount, $p->currency) }} {{ __('Paid') }} {{ __('View') }} {{ __('PDF') }}

{{ __('No invoices yet') }}

{{ __('Once you subscribe to a plan, your invoices will appear here.') }}