ContractFlow Agency
123 Rue du Web, 75000 Paris
contact@contractflow.fr
DEVIS N° {{ $quote->quote_number }}
Date : {{ $quote->created_at->format('d/m/Y') }}
@if($quote->valid_until)
Valable jusqu'au : {{ $quote->valid_until->format('d/m/Y') }}
@endif

Informations Client

{{ $quote->client_name }}
@if($quote->client_address)
{{ $quote->client_address }}
@endif @if($quote->client_email)
{{ $quote->client_email }}
@endif
@foreach($quote->line_items as $item) @endforeach
Description des prestations Qté Prix Unitaire HT Total HT
{{ $item['description'] }} {{ $item['quantity'] }} {{ number_format($item['unit_price'], 2, ',', ' ') }} € {{ number_format($item['total'], 2, ',', ' ') }} €
Total HT {{ number_format($quote->total_ht, 2, ',', ' ') }} €
TVA ({{ rtrim(rtrim(number_format($quote->tva_rate, 2), '0'), '.') }}%) {{ number_format($quote->total_ttc - $quote->total_ht, 2, ',', ' ') }} €
Total TTC {{ number_format($quote->total_ttc, 2, ',', ' ') }} €
@if($quote->notes)
Conditions et notes complémentaires :
{!! nl2br(e($quote->notes)) !!}
@endif