THANASOFT

Solutions de gestion funéraire

{{ $quote->client ? 'CLIENT' : 'GROUPE CLIENT' }}

{{ $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 }}

@endif
Devis : {{ $quote->reference }}

Date : {{ $quote->quote_date->format('d/m/Y') }}
Valable jusqu'au : {{ $quote->valid_until?->format('d/m/Y') ?? 'Non definie' }}

@foreach($quote->lines as $line) @endforeach
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 }}
Total HT : {{ number_format($quote->total_ht, 2, ',', ' ') }} {{ $quote->currency }}
TVA : {{ number_format($quote->total_tva, 2, ',', ' ') }} {{ $quote->currency }}
TOTAL TTC : {{ number_format($quote->total_ttc, 2, ',', ' ') }} {{ $quote->currency }}