E-commerce Store
Email: info@vastraavillaa.com
Phone: +8801617-512307
{{ $order->billing_address['name'] ?? trim(($order->billing_address['first_name'] ?? '') . ' ' . ($order->billing_address['last_name'] ?? '')) }}
{{ $order->billing_address['address'] ?? '' }}
{{ $order->billing_address['city'] ?? '' }}
{{ $order->billing_address['country'] ?? '' }}
Phone: {{ $order->billing_address['phone'] ?? '' }}
@elseNo billing address available
@endif{{ $order->shipping_address['name'] ?? trim(($order->shipping_address['first_name'] ?? '') . ' ' . ($order->shipping_address['last_name'] ?? '')) }}
{{ $order->shipping_address['address'] ?? '' }}
{{ $order->shipping_address['city'] ?? '' }}
{{ $order->shipping_address['country'] ?? '' }}
Phone: {{ $order->shipping_address['phone'] ?? '' }}
@elseNo shipping address available
@endif| Product | Price | Qty | Total |
|---|---|---|---|
|
@if ($item->product && $item->product->image)
No Image
@endif
{{ $item->product->name ?? 'N/A' }}
|
৳{{ number_format($item->price, 2) }} | {{ $item->quantity }} | ৳{{ number_format($item->total, 2) }} |
| No items in this order | |||
Payment Method: {{ ucfirst(str_replace('_', ' ', $order->payment_method)) }}
Payment Status: {{ ucfirst($order->payment_status) }}