@include('deliveryfront.includes.header')
Order Details
{{$neworder}}
{{date('h:i a', strtotime($order->dateTime))}} {{date('d M y', strtotime($order->dateTime))}}

{{$order->orderId}}

    @foreach($orderdetails as $o)
  • {{$o->productName}} X {{$o->quantity}} {{$o->price}} {{ number_format($o->compareAtPrice,2)}}
  • @endforeach
  • Delivery Charges{{$order->shippingPrice}}
  • Total{{$order->totalPrice}}
  • @if(count($return_order)>0)
  • Return
  • @foreach($return_order as $o)
  • {{$o->productName}} X {{$o->quantity}}{{$o->price}}
  • @endforeach
  • Total Return Amount{{ number_format($return_amount,2)}}
  • @endif

Customer

  • Name{{$order->firstName}}
  • Phone+91 {{$order->mobile}}
  • Address
    {!! $order->shippingAddress !!}
@if($order->orderStatus!="Delivered")
@if($order->orderStatus=="Order Placed")
@csrf
@endif @if($order->orderStatus=="Out For Delivery" || $order->orderStatus=="Out for Delivery")
@if($order->is_return) @else @endif
@endif @include('admin.includes.msg')
@endif