@php use App\Models\Setting; $contactPhone = Setting::get('contact_phone', config('umami.phone', '392 204 3500')); $contactEmail = Setting::get('contact_email', config('umami.email', 'info@umamibeer.it')); $contactAddress = Setting::get('contact_address', config('umami.address', 'Via Los Angeles, 4 - Santa Maria degli Angeli (PG)')); @endphp Nuovo Ordine - Umami Beer
Umami Beer

🔔 NUOVO ORDINE

#{{ $order->order_number }}

Cliente

{{ $order->customer_name }}

📞 {{ $order->customer_phone }}
📧 {{ $order->customer_email }}

Dettagli

@if($order->order_type === 'delivery' && $order->delivery_address) @endif @if($order->notes) @endif
Tipo Ordine: {{ $order->order_type === 'takeaway' ? '📦 ASPORTO' : '🚗 CONSEGNA' }}
{{ $order->order_type === 'takeaway' ? 'Ritiro' : 'Consegna' }}: ⏰ {{ \Carbon\Carbon::parse($order->pickup_time)->format('d/m/Y \a\l\l\e H:i') }}
Indirizzo: 📍 {{ $order->delivery_address }}
Note: 💬 {{ $order->notes }}
@foreach($order->items as $item) @endforeach
Articoli da Preparare
{{ $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 @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, ',', '.') }}
TOTALE: € {{ number_format($order->total_price, 2, ',', '.') }}

Gestisci questo ordine:

Visualizza nell'Admin

Umami Beer
{{ $contactAddress }}
Cell & WhatsApp: {{ $contactPhone }}
E-mail: {{ $contactEmail }}