Customer Name
{{ $order->name }}
Email Id
{{ $order->email }}
Mobile Number
{{$order->mobile_number}}
Order Date & Time
{{ $order->created_at }}
Order ID
{{ '#'.$order->order_number }}
Order Status
{{$order->order_status}}
Billed Amount
{{$order->order_amount_with_shipping}}
Payment Status
{{ $order->payment_status }}
@if($order->payment_status == "failed")
Payment Failed Reason
{{ $order->payment_message }}
@endif
@if($order->payment_status == "success")
Payment Approval Date
{{ date("jS F Y h:i:s A",strtotime($order->payment_approved_date)) }}
@endif
Transaction Id
{{ $order->transaction_number }}
Payment Method
{{ $order->payment_method }}
Shipping Type
{{ $order->address_type }}
Coupon Status
{{ $order->coupon_id ? 'Applied':'Not Applied' }}
Coupon Code
{{ $order->coupon_code }}
Total Items
{{ $order->total_item_count }}
Total Costs
{{ $order->order_amount_with_shipping }}
@if($order->payment_method =="offline")
Refrence Id
{{ $order->refrence_id }}
Payment Proof
@endif
@if ($order->cancelorder)
Cancellation Reason Admin
{{$order->cancelorder->cancellation_reason_admin}}
Cancellation Reason Customer
{{$order->cancelorder->cancellation_reason}}
Reason
{{$order->cancelorder->reasons->title ?? ""}}
Cancelled By
{{ ucfirst($order->cancelorder->cancelled_by)}}
@endif
@if ($order->cancelorder && $order->refundorder)
Transaction ID
{{$order->refundorder->transaction_id}}
Refunded Amount
{{$order->refundorder->refunded_amount}}
Refund Date
{{ date('d/m/Y H:i A', strtotime($order->refundorder->refunded_date))}}
@endif
@if ($order->courierorder)
AWB Number
{{$order->courierorder->awb_number}}
Courier Name
{{$order->courierorder->courier_name}}
Deliver In
{{ $order->courierorder->delivery_date}} Days
@endif