{{ __('messages.Billing history') }}
{{ __('messages.List of paid invoices') }}
| {{ __('messages.Invoice Number') }} | {{ __('messages.Date Issued') }} | {{ __('messages.Description') }} | {{ __('messages.Amount due') }} | {{ __('messages.Status') }} |
|---|---|---|---|---|
| {{ $invoice->id }} | {{ date('d M Y H:i:s', $invoice->lines->first()->period->start) }} | {{ $invoice->lines->first()->description }} | {{ $invoice->amount_due / 100 }} € | {{ $invoice->paid ? __('messages.Paid') : __('messages.Not paid') }} |
| {{$invoice->id}} | {{(new DateTime($invoice->start_date))->format('d-m-Y H:m') }} | {{$invoice->plan_name}} | {{$invoice->price}} | {{ __('messages.paid') }} |