Ordine Confermato!
Ciao {{ $order->customer_name }},
Grazie per il tuo ordine! Stiamo preparando tutto con cura.
|
Dettagli Ordine
| Numero Ordine: |
{{ $order->order_number }} |
| Tipo: |
{{ $order->order_type === 'takeaway' ? 'Asporto' : 'Consegna a domicilio' }}
|
|
{{ $order->order_type === 'takeaway' ? 'Ritiro' : 'Consegna' }}:
|
{{ \Carbon\Carbon::parse($order->pickup_time)->format('d/m/Y \a\l\l\e H:i') }}
|
@if($order->order_type === 'delivery' && $order->delivery_address)
| Indirizzo: |
{{ $order->delivery_address }} |
@endif
@if($order->notes)
| Note: |
{{ $order->notes }} |
@endif
|
|
Articoli Ordinati
|
@foreach($order->items as $item)
{{ $item->quantity }}x {{ $item->name }}
@if($item->selectedOptions && $item->selectedOptions->count() > 0)
@foreach($item->selectedOptions as $opt)
{{ $opt->option_name }}@if($opt->price_modifier > 0) (+€{{ number_format($opt->price_modifier, 2, ',', '.') }})@endif{{ !$loop->last ? ', ' : '' }}
@endforeach
@endif
@if($item->special_requests)
{{ $item->special_requests }}
@endif
@if($item->notes)
{{ $item->notes }}
@endif
|
€ {{ number_format($item->price, 2, ',', '.') }}
@if($item->options_total > 0)
+{{ number_format($item->options_total, 2, ',', '.') }}
@endif
|
€ {{ number_format(($item->price + ($item->options_total ?? 0)) * $item->quantity, 2, ',', '.') }}
|
@endforeach
|
Totale:
|
€ {{ number_format($order->total_price, 2, ',', '.') }}
|
Stato ordine: {{ $order->status_label }}
Ti aggiorneremo via email quando l'ordine sarà pronto.
Per qualsiasi domanda, contattaci:
Cell & WhatsApp: {{ $contactPhone }}
Email: {{ $contactEmail }}
|