{{ config('app.name') }}

{{ config('app.address', '') }}
Facture
N°: {{ $invoice->number ?? $invoice->id }}
Date: {{ \Carbon\Carbon::parse($invoice->created_at ?? now())->format('d/m/Y') }}
Facturer à :
{{ $invoice->name ?? '—' }}
{{ $invoice->email ?? '—' }}
@forelse($items as $item) @empty @endforelse
Désignation Quantité Prix unitaire Total
{{ $item->description ?? $item->name ?? 'Item' }} {{ $item->quantity ?? 1 }} {{ number_format($item->price ?? $item->unit_price ?? 0, 2, ',', ' ') }} € {{ number_format(($item->quantity ?? 1) * ($item->price ?? $item->unit_price ?? 0), 2, ',', ' ') }} €
Aucun item
Sous-total{{ number_format($invoice->subtotal ?? $invoice->total ?? 0, 2, ',', ' ') }} €
Taxe{{ number_format($invoice->tax ?? 0, 2, ',', ' ') }} €
Total{{ number_format($invoice->total ?? 0, 2, ',', ' ') }} €