| Période | {{ \Carbon\Carbon::parse($invoice->invoice_date)->locale('fr')->isoFormat('MMMM YYYY') }} |
| Type de vente | {{ $invoice->sale_type ?? 'Prestations de services' }} |
{{ $user->prenom }} {{ $user->nom }}
@if($worker && $worker->address_line1){{ $worker->address_line1 }}
@endif @if($worker && $worker->zip_code && $worker->city){{ $worker->zip_code }} {{ $worker->city }}
@endif @if($worker && $worker->country){{ $worker->country }}
@endif @if($worker && $worker->siret)Nº SIRET : {{ \App\Models\Worker::formatSiret($worker->siret) }}
@endif @if($worker && $worker->vat_applicable && $worker->vat_number)Nº TVA Intracom. : {{ $worker->vat_number }}
@endif{{ $invoice->client_name }}
{!! nl2br(e($invoice->client_address)) !!}
@if($invoice->client_siret) @php $siretParts = explode(':', $invoice->client_siret, 2); @endphp@if(count($siretParts) === 2) {{ trim($siretParts[0]) }} : {{ trim($siretParts[1]) }} @else {{ $invoice->client_siret }} @endif
@endif| Description | Quantité | PU HT | TVA | Total HT |
|---|---|---|---|---|
|
{{ $item['description'] }}
@if(!empty($item['note']))
{{ $item['note'] }}
@endif
|
{{ $item['quantity'] }} | {{ number_format($item['unit_price'], 2, ',', ' ') }} € | {{ number_format($invoice->vat_rate, 0) }}% | {{ number_format($item['total'], 2, ',', ' ') }} € |
| Sous-total HT | {{ number_format($invoice->subtotal, 2, ',', ' ') }} € |
| TVA {{ number_format($invoice->vat_rate, 0) }}% | @if((float)($invoice->vat_rate ?? 0) === 0.0) 0,00 € @else {{ number_format($invoice->vat_amount, 2, ',', ' ') }} € @endif |
| Remise | -{{ number_format($invoice->discount_total, 2, ',', ' ') }} € |
| Frais | {{ number_format($invoice->shipping_total, 2, ',', ' ') }} € |
| Total à payer | {{ number_format($invoice->total, 2, ',', ' ') }} € |