{{--
{{ __('messages.Billing history') }}
{{ __('messages.List of paid invoices') }}
{{ __('messages.Invoice Number') }} | {{ __('messages.Date Issued') }} | {{ __('messages.Description')}} | {{ __('messages.Amount due') }} | {{ __('messages.Status') }} |
---|---|---|---|---|
Invoice Number | Date Issued | Description | Amount due | 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 ? 'Payé' : 'Non payé' }} |