Order Id - {{$orders->order_number}}
Order Date - {{$orders->created_at->format("d/m/Y")}}
Payment Method - {{$orders->payment_method}}
| Billing Address | Shipping Address |
|---|---|
|
{{$orders->billing_address->street}} {{$orders->billing_address->pincode}}, {{$orders->billing_address->city}}, {{$orders->billing_address?->state->name}}, {{$orders->billing_address?->country->name}} Contact: ({{$orders->billing_address?->country_code}}) {{$orders->billing_address?->phone}} |
{{$orders->shipping_address->street}} {{$orders->shipping_address->pincode}}, {{$orders->shipping_address->city}}, {{$orders->shipping_address?->state->name}}, {{$orders->shipping_address?->country->name}} Contact: ({{$orders->shipping_address?->country_code}}) {{$orders->shipping_address?->phone}} |
| No | Product Name | Price | Qty | Subtotal | Shipping Cost | Grand Total |
|---|---|---|---|---|---|---|
| {{++$no}} | {{$product->name}} | $ {{$product->pivot->single_price}} | {{$product->pivot->quantity}} | $ {{$product->pivot->subtotal}} | $ {{$product->pivot->shipping_cost}} | $ {{$product->pivot->subtotal + $product->pivot->shipping_cost + $product->pivot->tax}} |
|
Sub Total Tax Shipping Total Payable ${{$orders->amount}} ${{$orders->tax_total}} ${{$orders->shipping_total}} ${{$orders->total}} |
||||||