@extends($theme.'.layouts.admin') @section('content')

Order Id : {{$orders->order_id}}

@if (session()->has('message'))
{{session()->get('message')}}
@endif

Order Value:

₹{{$orders->grand_total}}

Purchased date:

{{$orders->order_date}}

Payment Mode:

{{$orders->payment_mode_name}}

Payment Method Name:

{{$orders->razorpay_payment_method}}

Status:

{{$orders->order_status}}

Shipping:

{{$orders->shipping_name}}

Student Class:

{{$orders->class_name}}

@if(!empty($orders->order_tracking_link)) @endif
@if ($orders->order_status_id <> 9 && $orders->order_status_id <> 12 && $orders->order_status_id <> 14 && $orders->order_status_id <> 15 && $orders->order_status_id <> 10 && $orders->order_status_id <> 20)

Order Track

Order confirmed
Processing order
Ready for dispatch
Product dispatched
Product delivered
@endif

Order Item

@if(isset($order_items)) @php $product_discount = 0 ; $product_subtotal = 0; @endphp @foreach($order_items as $key => $item) @foreach($item as $item) @endforeach @endforeach @endif
Product Size Price Quantity Total
{{$item->name_en}}
{{$item->variant_en}}

{{$item->product_size}}

{{ env("CURRENCY_CODE") .' '.$item->price}}

{{$item->quantity}}

{{ env("CURRENCY_CODE") .' '.$item->subtotal}}
  • Subtotal {{ env("CURRENCY_CODE") .' '.number_format($orders->products_subtotal,2)}}
  • @if ($orders->discount_amount > 0)
  • Product Disount - {{ env("CURRENCY_CODE") .' '.$orders->discount_amount}}
  • @endif @if($orders->promo_code_discount != '0.00' && !empty($orders->promo_code_discount))
  • Promocode ({{$orders->promo_code}}) - {{ env("CURRENCY_CODE") .' '.$orders->promo_code_discount}}
  • @endif @if($orders->delivery_charge != '0.00')
  • Delivery Charge + {{ env("CURRENCY_CODE") .' '.$orders->delivery_charge}}
  • @endif
  • Total {{ env("CURRENCY_CODE") .' '.number_format($orders->grand_total,2)}}
Billing Address

{{$orders->customer_address_contact_person}}

{{ $orders->customer_house_no }}, {{ $orders->customer_landmark }}
{{ $orders->customer_address_street }}, {{ $orders->customer_address_city }}
{{ $orders->customer_address_state }} - {{ $orders->customer_address_pin_number }}.
Mobile No : {{ $orders->customer_mobile }}

@if($orders->order_status_id == 8 || $orders->order_status_id == 9 || $orders->order_status_id == 12 || $orders->order_status_id == 15) Review Order @elseif($orders->order_status_id == 14 && $orders->is_razorpay_failed == 1) Retry Payment @endif Download Invoice
@endsection