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

Facture : {{ @$order->reference }}
Créée : {{ $order->placed_at }}

Facturation

{{ $order->billingAddress->fullName }}
@if($order->billingAddress->company_name) {{ $order->billingAddress->company_name }}
@endif {{ $order->billingAddress->line_one }} @if($order->billingAddress->line_two)
{{ $order->billingAddress->line_two }}
@endif @if($order->billingAddress->line_three)
{{ $order->billingAddress->line_three }}
@endif {{ $order->billingAddress->city }}
{{ $order->billingAddress->state }}
{{ $order->billingAddress->postcode }}
{{ $order->billingAddress->country->name }}
@if($order->customer?->vat_no)

N° de TVA: {{ $order->customer?->vat_no }}

@endif

Livraison

{{ $order->shippingAddress->fullName }}
@if($order->shippingAddress->company_name) {{ $order->shippingAddress->company_name }}
@endif {{ $order->shippingAddress->line_one }} @if($order->shippingAddress->line_two)
{{ $order->shippingAddress->line_two }}
@endif @if($order->shippingAddress->line_three)
{{ $order->shippingAddress->line_three }}
@endif {{ $order->shippingAddress->city }}
{{ $order->shippingAddress->state }}
{{ $order->shippingAddress->postcode }}
{{ $order->shippingAddress->country->name }}
@foreach($order->physicalLines as $line) @endforeach @foreach($order->shippingLines as $line) @endforeach
Produit UGS Qté Prix unit. Réduction Taux de taxation Montant de la taxe Total de la ligne
{{ $line->description }}
{{ $line->option }}
{{ $line->identifier }} {{ $line->quantity }} {{ $line->unit_price->formatted }} {{ $line->discount_total->formatted }} {{ $line->tax_breakdown->sum('percentage') }}% {{ $line->tax_total->formatted }} {{ $line->sub_total->formatted }}
Sous-total {{ $order->sub_total->formatted }}
Livraison
{{ strip_tags($line->description) }}
{{ $line->sub_total->formatted }}
Taxes {{ $order->tax_total->formatted }}
Total {{ $order->total->formatted }}
@if($order->notes)

Notes de la commande
{{ $order->notes }}


@endif