@if (!empty($orders)) @foreach($orders as $order_id => $order_detail)

AdishwarMart

Bangalore

@php $payment_name = $order_details->payment_name; if ($order_details->payment_code == 'razorpay' && !empty($order_details->paymentMode_external)) { $payment_name = $order_details->paymentMode_external; }@endphp @if ($order_details->payment_mode == 2) @else @endif
@lang('Customer Name') : {{ $order_details->customer_first_name.' '.$order_details->customer_last_name }} Invoice No : INV-{{ $order_details->id.$shipping_note_no }}
@lang('messages.Email') : {{ $order_details->customer_email }} Phone : {{ $order_details->customer_order_mobile }}
Payment Term : {{$payment_name}} Bank Transfer No : {{$order_details->bank_transfer_no}}{{$payment_name}}
Customer House No : {{$order_details->customer_house_no}} @lang('messages.Street Details') : {{ $order_details->customer_address_street}}
@lang('messages.Address') : {{ $order_details->customer_address}} / {{ $order_details->customer_address_apartment_name}}
Delivery Date : 01-Jan-1970 @lang('messages.Comments') : @if(!empty($order_details->admin_comments)) {{$order_details->admin_comments}} @else - @endif
@if(!empty($order_products))
@foreach($order_products as $item) @if ($item->partial_returned <> '1') @endif @endforeach
@lang('messages.Name') @lang('messages.Is Special') @lang('messages.Variant') @lang('messages.Unit Price') @lang('messages.QTY') @lang('messages.Total')
{{ $product_name }}
@if($item->is_special == 1) @else
-
@endif
{{$variant}} @if ($item->quantity <> 0) {{env('CURRENCY_CODE') . ' ' . number_format($item->discounted_price,3) }} @else - @endif @if ($item->quantity <> 0) @if ($order_details->status_id == 1) {{ $item->quantity }} @else {{ $item->quantity }} @endif @else - @endif @if ($item->quantity <> 0){{ env('CURRENCY_CODE') }} {{ $item->subtotal }}@else - @endif
@if (!empty($order_detail->promotion_product)) @foreach ($order_detail->promotion_product as $promotion_product)
Offer Item

Product Name : {{$product_name}}

{{$variant}}


Qty : {{$promotion_product->quantity}}

@endforeach @endif
@if (!empty($order_details->promo_code)) @endif
SUB TOTAL : {{env('CURRENCY_CODE') . ' ' . $order_details->products_subtotal }}
TOTAL (Before Tax) : {{env('CURRENCY_CODE') . ' ' . $order_details->products_subtotal }}
@lang('messages.Promo Code')({{$order_details->promo_code}}) : - {{env('CURRENCY_CODE') . ' ' . $order_details->promo_code_discount }}
DELIVERY CHARGES : + {{env('CURRENCY_CODE') . ' ' . $order_details->delivery_charge }}
TOTAL AMOUNT : {{ env('CURRENCY_CODE') }} {{$order_details->grand_total}}
@endif
@endforeach @endif