{{ $company ? $company->name : 'Mon Entreprise' }}
@if($company && $company->address){{ $company->address }}@else Ville @endif
@if($company && $company->phone){{ $company->phone }}@else Téléphone @endif
Bon de livraison N°: {{ $deliveryNote->number }}
Date livraison: {{ $deliveryNote->date->format('d/m/Y') }}

Livré à:
{{ $deliveryNote->client->name ?? 'Client' }}
{{ $deliveryNote->client->address ?? '' }}
@if($deliveryNote->client->ice)ICE: {{ $deliveryNote->client->ice }}
@endif @if($deliveryNote->client->phone)Tél: {{ $deliveryNote->client->phone }}
@endif @if($deliveryNote->client->email)Email: {{ $deliveryNote->client->email }}@endif

@foreach($deliveryNote->items as $item) @endforeach
Produit/Service Qté Unité
{{ $item->product_name }} {{ $item->quantity }} {{ $item->unit }}
@if($deliveryNote->notes)

Notes:

{{ $deliveryNote->notes }}

@endif @if($company && $company->footer_template) @endif