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

{{$order->orderId}}

    @foreach($orderdetails as $o)
  • is_return==1) style="text-decoration: line-through" @endif>is_return==1) disabled @endif name="product[]" value="{{$o->id}}"> {{$o->productName}} (Qty: @if($o->is_return==1) {{$o->return_quantity}}@else {{$o->quantity}}@endif)is_return==1) style="text-decoration: line-through" @endif>@if($o->is_return==1) {{$o->price*$o->return_quantity}} ({{$o->price}}X{{$o->return_quantity}})@else {{$o->price*$o->quantity}} ({{$o->price}}X{{$o->quantity}})@endif
  • @endforeach
Total : {{$order->totalPrice - $order->return_price}}