{{ $generaleSetting?->name ?? config('app.name') }}

http://www.sanitariademma.it

Email: {{ $generaleSetting?->email }}

Tel: {{ $generaleSetting?->mobile }}

SANITARIA DEMMA srl | P.I. 05388170820

Via E. L'Emiro, 5 - 90135 Palermo (PA) - Italia

Ordine di :

{{ $order->customer?->user?->name }} {{ $order->customer?->user?->last_name }}

N* Fidelity: {{ $order->customer?->user?->driving_lience }}

Tel:

{{ $order->customer?->user?->phone }}

Email:

{{ $order->customer?->user?->email }}

Indirizzo:

{{ ($order?->address?->address_line ?? 'N/A') . ', ' . ($order->address?->flat_no ?? 'N/A') .', ' . ($order->address?->post_code ?? 'N/A') . ', ' . ($order->address?->area ?? 'N/A') }}

Ricevuta di ({{ $generaleSetting?->currency }})

{{ showCurrency($order->payable_amount) }}

Tipo di consegna Numero Ordine Data Ordine
{{ $order->instruction }} #{{ $order->prefix . $order->order_code }} {{ $order->created_at->format('d F, Y') }}
@foreach ($order->products as $product) @php $price = $product->pivot->price > 0 ? $product->pivot->price : ($product->discount_price > 0 ? $product->discount_price : $product->price); @endphp @endforeach
Oggetto Nome Prodotto Prezzo un. Quantità BarCode Totale
{{ $loop->iteration }}. {{ $product->name }}

{{ Str::limit($product->short_description, 60, '...') }}

{{ showCurrency($price) }} {{ $product->pivot->quantity }} @php $generator = new BarcodeGeneratorHTML(); $barcode = $generator->getBarcode( $product->short_description ?? $product->short_description, $generator::TYPE_CODE_128, 2, 30 ); @endphp {!! $barcode !!}
{{ $product->short_description ?? 'N/A' }}
{{ showCurrency($price * $product->pivot->quantity) }}

Subtotale

{{ showCurrency($order->total_amount) }}

Sconto/Gift Card

{{ showCurrency($order->coupon_discount) }}

Spedizione

{{ showCurrency($order->delivery_charge) }}

Tasse

{{ showCurrency($order->tax_amount) }}

Totale

{{ showCurrency($order->payable_amount) }}