Date: {{ $order->created_at->format('d-m-Y') }}
| Serial Sl | Product Name | Product Attribute | Image | Product Qty | Product price | Total Price |
|---|---|---|---|---|---|---|
| {{ $key + 1 }} |
{{ $details->product->title }} |
{{ $details->product_attribute }} |
|
{{ $details->quqntity }} | {{ $details->price }} | {{ $details->quqntity * $details->price }} |
| Name | {{ $order->shipping->name }} |
|---|---|
| {{ $order->shipping->email }} | |
| Phone | {{ $order->shipping->phone }} |
| District | {{ $order->shipping->city }} |
| Address | {{ $order->shipping->address }} |
| Note | {{ $order->shipping->remark }} |
| Area | {{--{{ $order->area->name }} | --}}
| Details | Amount |
|---|---|
| Sub total | {{ $total }} |
| Delivery Change | {{ $total > 400 ? '0' : $order->area->regular_charge }} |
| Total | {{ $total > 400 ? $total : $total + $order->area->regular_charge }} |