{{ __('billing.invoices_open_body') }}
{{ __('billing.invoices_none') }}
@else| {{ __('billing.invoice_number') }} | {{ __('billing.invoice_date') }} | {{ __('billing.invoice_amount') }} | |
|---|---|---|---|
| {{ $invoice['number'] ?? $invoice['id'] }} | {{-- Stripes `created` ist ein Unix-Zeitstempel, kein Carbon. ->local() ist R19 und nicht verhandelbar: was ein Mensch liest, geht auf die Wanduhr. --}} {{ \Illuminate\Support\Carbon::createFromTimestamp((int) $invoice['created_at'])->local()->isoFormat('D. MMM YYYY') }} | {{ number_format($invoice['amount_due_cents'] / 100, 2, ',', '.') }} {{ $invoice['currency'] }} |
|