@php use Illuminate\Support\Str; @endphp New order {{ $order->order_number }}
@if(filled($order->notes)) @endif

New storefront order

{{ $order->order_number }}

{{ Str::squish((string) ($order->customer_name ?: 'Customer')) }} placed an order for ৳ {{ number_format((float) $order->total, 2) }}.

@if(filled($order->customer_email)) @endif @if(filled($order->customer_phone)) @endif @if(filled($order->customer_address)) @endif @if(filled($order->coupon_code)) @endif @if(filled($order->bkash_sender_number)) @endif @if(filled($order->bkash_transaction_id)) @endif
Email{{ $order->customer_email }}
Phone{{ $order->customer_phone }}
Address{{ $order->customer_address }}
Placed{{ $order->placed_at?->format('M j, Y') ?? '—' }}
Payment{{ strtoupper((string) ($order->payment_method?->value ?? $order->payment_method)) }}
Coupon{{ $order->coupon_code }}
bKash (customer wallet){{ $order->bkash_sender_number }}
bKash Txn ID{{ $order->bkash_transaction_id }}
Status{{ ucfirst((string) ($order->status?->value ?? $order->status)) }}

Customer note

{{ $order->notes }}

Items

@foreach($order->items as $item) @endforeach
Product Qty Total
{{ $item->label_snapshot }} {{ $item->quantity }} ৳ {{ number_format((float) $item->line_total, 2) }}
Subtotal ৳ {{ number_format((float) $order->subtotal, 2) }}
Delivery ৳ {{ number_format((float) $order->delivery_fee, 2) }}
Total ৳ {{ number_format((float) $order->total, 2) }}
{{ config('app.name') }} · automatic notification