Customer Details |
Order No. |
#VS-{{ $order->id }} |
Company Name
|
{{ $order->company_name }}
|
customer_name
|
{{ $order->customer_name }} |
Order Creation Time
|
{{ $order->created_at->format('d-m-Y h:i A') }} |
Comments
|
{{ $order->note }}
|
|
|
|
Order Details |
@if (!is_null($order->items))
Item Name
|
Qty |
Type
|
Price |
Total |
@foreach ($order->items as $item)
{{ $item->name }}
|
{{ $item->quantity }}
|
@if ($item->variant)
{{ $item->variant?->variant_value?->name }}
@else
-
@endif
|
${{ $item->price }}
|
${{ 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 Product SubTotal : |
${{ number_format($order->total_amount ?? 0, 2) }}
|
Coupon Discount : |
${{ number_format($order->discount_amount ?? 0, 2) }} |
Tax 13% : |
${{ number_format($order->tax ?? 0, 2) }} |
Grand Total : |
${{ number_format($order->grand_total ?? 0, 2) }}
|
|
|
{{--