One-time payments

@forelse($invoices as $invoice) @empty @endforelse
{{ ctrans('texts.invoice') }} {{ ctrans('texts.total') }} {{ ctrans('texts.date') }}
{{ $invoice->number }} {{ App\Utils\Number::formatMoney($invoice->amount, $invoice->client) }} {{ $invoice->formatDate($invoice->date, $invoice->client->date_format()) }}
{{ ctrans('texts.no_results') }}
@if($invoices->total() > 0) @endif {{ $invoices->links('portal/ninja2020/vendor/pagination') }}

Subscriptions

@forelse($invoices as $invoice) @empty @endforelse
{{ ctrans('texts.invoice') }} {{ ctrans('texts.total') }} {{ ctrans('texts.date') }}
{{ $invoice->number }} {{ App\Utils\Number::formatMoney($invoice->amount, $invoice->client) }} {{ $invoice->formatDate($invoice->date, $invoice->client->date_format()) }}
{{ ctrans('texts.no_results') }}
@if($invoices->total() > 0) @endif {{ $invoices->links('portal/ninja2020/vendor/pagination') }}