Solutions de gestion funéraire
{{ $quote->client?->name ?? $quote->group?->name ?? 'Destinataire inconnu' }}
@if($quote->client){{ $quote->client->billing_address_line1 }}
{{ $quote->client->billing_postal_code }} {{ $quote->client->billing_city }}
@endifDate : {{ $quote->quote_date->format('d/m/Y') }}
Valable jusqu'au : {{ $quote->valid_until?->format('d/m/Y') ?? 'Non definie' }}
| Description | Quantité | Prix Unitaire | Total HT |
|---|---|---|---|
| {{ $line->description }} | {{ $line->quantity ?? $line->units_qty ?? $line->qty_base ?? 0 }} | {{ number_format($line->unit_price, 2, ',', ' ') }} {{ $quote->currency }} | {{ number_format($line->total_ht, 2, ',', ' ') }} {{ $quote->currency }} |