Order #:
@if($order->properties['is_buy_direct']??false)
شراء مباشرة
@endif
Order Date & Time:
{{$order->created_at}}
@if($order->order_shipment)
Provider:
{{$order->order_shipment->provider}}
Tracking Number:
{{$order->order_shipment->track_id}}
@if($order->order_shipment && $order->order_shipment->provider == "mimi-express")
Order Status:(tracking)
{{\App\facades\IHouseFacade::getMimiExpressOrderStatus($order->order_shipment->track_id)}}
Order Details:
{{\App\facades\IHouseFacade::getMimiExpressOrderDetails($order->order_shipment->track_id)}}
@endif
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_balance)
Balance Used:
{{$order->customer_balance->amount}}
@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)}}
Collect Amount:
{{Form::number("collect_amount", $order->collect_amount, ['class'=>'form-control m-input','min'=>0,'id'=>'collect_amount'])}}
@if($order->customer_notes)
Customer Notes:
{{$order->customer_notes}}
@endif