@include('admin.header')

ORDERS

VIEW - ORDER #{{ $objs->order_number }} Order {{ $objs->order_status }}

Basic Detail

{{ $objs->name }}

{{ $objs->email }}/{{$objs->mobile_number}}

{{ '#'.$objs->booking_number }}

{{ $objs->created_at }}

{{ $objs->total_services }}

{{ $objs->payment_status }}

{{ $objs->cost }}

{{ $objs->total_cost }}

{{--

Order Shipping Information

@csrf @csrf @csrf
Shipping Type
Shipping By
Tracking Number
Tracking Details

Note: After Entering Shipping information please click on Shipping Detail button to change the Payment Status / Order Status so that Customer may get Shipping information through SMS / Email

--}}

Order - Details

@if ($objs->gst_type == 'IGST') @else @endif @if (isset($objs->order_details) && count($objs->order_details) > 0) @foreach ($objs->order_details as $objs_detail) @if ($objs->gst_type == 'IGST') @else @endif @endforeach @endif @if ($objs->gst_type == 'IGST') @else @endif
Image Product Name MRP Discount Price QuantityIGSTCGST SGSTTotal
@if (isset($objs_detail->product)) @else @endif {{$objs_detail->product_name}} {{ $objs_detail->mrp }}

Color-{{ $objs_detail->color_name }} /Size -{{ $objs_detail->size_name }}

{{ $objs_detail->price }} {{ $objs_detail->quantity }}{{ $objs_detail->igst_amount }}{{ $objs_detail->cgst_amount }} {{ $objs_detail->sgst_amount }}{{ $objs_detail->total_price_with_gst }}
Sub Total {{ $objs->order_amount }}
Coupon Discount -{{ $objs->discount_amount }}
Referral Discount -{{ $objs->referral_discount_amount }}
IGST +{{ $objs->igst_amount }}
CGST +{{ $objs->cgst_amount }}
SGST +{{ $objs->sgst_amount }}
Shipping Fee +{{ $objs->shipping_type_price }}
Total Amount {{ $objs->order_amount_with_shipping }}

Shipping Details

{{ $objs->name }}

{{ $objs->address }}

{{ $objs->landmark }}

{{ $objs->mobile_number }}

{{ $objs->email }}

{{ $objs->address }} {{ $objs->city }} {{ $objs->state }} {{ $objs->country }} {{ $objs->pincode }}

    @if ($objs->order_status = !'cancelled' || ($objs->order_status = !'delivered'))
  • @csrf
  • @endif {{--
  • Track Order
  • --}}
  • Invoice

Billing Details

{{ $objs->name }}

{{ $objs->mobile_number }}

{{ $objs->email }}

{{ $objs->address }} {{ $objs->city }} {{ $objs->state }} {{ $objs->country }} {{ $objs->pincode }}

    @if ($objs->order_status = !'cancelled' || ($objs->order_status = !'delivered'))
  • @csrf
  • @endif {{--
  • Track Order
  • --}}
@include('admin.footer')