Customer Details |
Order No |
#V{{ $order->id }} |
Company Name
|
{{ $order->company_name }}
|
Customer Name
|
{{ $order->customer_name }} |
Order Creation Date
|
{{ $order->created_at->format('d-m-Y') }} |
Shipping Address
|
{{ $order->billing_address }}
|
Zip Code |
{{ $order->address?->pincode }}
|
City |
{{ $order->address?->city }}
|
Comments
|
{{ $order->comments }}
|
|
|
|
Order Details |
@if (!is_null($order->items))
Item Name
|
Qty |
Weight
|
Price |
Total |
@foreach ($order->items as $item)
{{ $item->name }}
|
{{ $item->quantity }}
|
{{ $item->product->weight }}
|
${{ number_format($item->price, 2) }}
|
${{ number_format($item->total_amount ?? 0, 2) }}
|
@endforeach
@endif
@if (!is_null($order->saleitems))
Item Name
|
Qty |
Weight
|
Price |
Total |
@foreach ($order->saleitems as $item)
{{ $item->name }}
|
{{ $item->quantity }}
|
{{ $item->saleproduct->weight }}
|
${{ number_format($item->price, 2) }}
|
${{ number_format($item->total_amount ?? 0, 2) }}
|
@endforeach
@endif
|
Sub Total : |
${{ number_format($order->total_amount ?? 0, 2) }}
|
{{--
Taxable Product SubTotal : |
{{$order->tax_total}} |
--}}
Taxable Products: |
${{ number_format($order->total_amount ?? 0, 2) }}
|
{{--
Coupon Discount : |
${{ number_format($order->discount_amount ?? 0, 2) }} |
--}}
HST 13% : |
${{ number_format($order->tax ?? 0, 2) }} |
Grand Total : |
${{ number_format($order->grand_total ?? 0, 2) }}
|
|
|
|
{{--