Order #:
@if($order->properties['is_buy_direct']??false)
شراء مباشرة
@endif
{{$order->track_id}}
Order Date & Time:
{{$order->created_at}}
@if($order->order_shipment)
Provider:
{{$order->order_shipment->provider}}
Tracking Number:
{{$order->order_shipment->track_id}}
Package Number:
{{$order->order_shipment->package_id}}
@endif
Payment Method:
@include('admin.orders.select_payment_method')
@if($payment_logs)
Channel:
{{$payment_logs->channel}}
@endif
Before Discount Total:
{{number_format($order->total_before)}}
After Discount Total:
{{number_format($order->total_after)}}
Payment Gateway Commission value:
{{ $order->gateway_commission }}
@if($order->with_delivery)
Delivery:
{{$order->delivery ? $order->delivery : "Free"}}
@endif
@if($order->with_payments)
Months:
{{$order->months}}
Monthly Payment:
{{number_format($order->total/$order->months)}}
@endif
@if($order->coupon_id)
Coupon Used: {{$order->coupon->code}}
{{$order->coupon_description}}
@endif
@if($order->customer_redeem)
Points Used:
{{number_format($order->customer_redeem->amount)}}
₪
@endif
@if($order->bundle_description)
{{$order->bundle_description}}
{{$order->bundle_discount}}
₪
@endif
@if($order->total_laser_price)
Laser Total:
{{number_format($order->total_laser_price)}}
@endif
@php $isOrderDelivered = ($order->status->code == 'delivered') @endphp
Adjustment Value:
@if($isOrderDelivered)
{{ $order->adjustment }}
Adjustment reason:
{{ $order->adjustment_reason }}
@else
@endif
Grand Total:
{{number_format($order->total)}}
@if($order->customer_notes)
Customer Notes:
{{$order->customer_notes}}
@endif