@if($order->shipping)
{{ $order->shipping->name ?? '' }}
📞 {{ $order->shipping->phone ?? '' }}
📍 {{ $order->shipping->address ?? '' }}@if($order->district), {{ $order->district }}@endif
@endif
@foreach($order->orderItems as $item)
| {{ \Illuminate\Support\Str::limit($item->product_name, 24) }} @if($item->size)({{ $item->size }})@endif |
{{ $item->qty }}×৳{{ number_format($item->unit_price) }} |
৳{{ number_format($item->qty * $item->unit_price) }} |
@endforeach
Shipping (+)৳{{ number_format($order->shipping_charge ?? 0) }}
@if($order->discount > 0)
Discount (-)৳{{ number_format($order->discount) }}
@endif
Payment: {{ strtoupper($order->payment_method ?? 'COD') }}
TOTAL: ৳{{ number_format($order->total_amount) }}