Customer Information:
@if($order->contact_name)
Name:
{{ $order->contact_name }}
@endif
@if($order->contact_phone)
Phone:
{{ $order->contact_phone }}
@endif
@if($order->whatsapp)
WhatsApp:
{{ $order->whatsapp }}
@endif
@if($order->contact_email)
Email:
{{ $order->contact_email }}
@endif
@if($order->address)
Address:
{{ $order->address }}, {{ $order->city }}, {{ $order->state }} {{ $order->postal_code }}
@endif
Order Details:
Date:
{{ $order->created_at->format('d M, Y h:i A') }}
@if($order->payment_method === 'cod')
Cash on Delivery
(Payment due upon delivery)
@else
Pay with:
{{ $order->payment_method === 'cod' ? 'Cash on Delivery' : 'SSLCommerz' }}
@endif