|
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))
| Email | {{ $order->customer_email }} |
@endif
@if(filled($order->customer_phone))
| Phone | {{ $order->customer_phone }} |
@endif
@if(filled($order->customer_address))
| Address | {{ $order->customer_address }} |
@endif
| Placed | {{ $order->placed_at?->format('M j, Y') ?? '—' }} |
| Payment | {{ strtoupper((string) ($order->payment_method?->value ?? $order->payment_method)) }} |
@if(filled($order->coupon_code))
| Coupon | {{ $order->coupon_code }} |
@endif
@if(filled($order->bkash_sender_number))
| bKash (customer wallet) | {{ $order->bkash_sender_number }} |
@endif
@if(filled($order->bkash_transaction_id))
| bKash Txn ID | {{ $order->bkash_transaction_id }} |
@endif
| Status | {{ ucfirst((string) ($order->status?->value ?? $order->status)) }} |
|
@if(filled($order->notes))
|
Customer note
{{ $order->notes }}
|
@endif
|
Items
| Product |
Qty |
Total |
@foreach($order->items as $item)
| {{ $item->label_snapshot }} |
{{ $item->quantity }} |
৳ {{ number_format((float) $item->line_total, 2) }} |
@endforeach
| 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
|