@extends('layouts.user-inner') @section('content')

Order Details

Ordered On {{date('d-m-Y',strtotime($orders->o_date))}}
    @if($orders->o_cancel_status == 0)
  • Order
    Placed
  • Order
    Processing
  • Order
    Dispatched
  • Order
    Delivered
  • @else
  • Order
    Placed
  • Order
    Cancelled
  • @endif
Order Details
Order ID {{$orders->order_unique_id}}
Total QAR {{$orders->o_grand_total}}
@if($orders->o_cust_id=="")
Customer Details
{{$orders->shp_u_name.' '.$orders->shp_u_lname}}
@if($orders->shp_u_adds == "" && $orders->shp_u_adds_2 == "") {{ 'N/A' }} @else{{ $orders->shp_u_adds.", ".$orders->shp_u_adds_2.", ".$orders->shp_u_city.", " }}@if($orders->shp_u_province !=""){{ $orders->shp_u_province.", " }} @endif @endif
{{$orders->shp_u_email}}
{{$orders->shp_u_contact}}
@else
Customer Details
{{$orders->u_name.' '.$orders->u_lname}}
@if($orders->u_adds == "" && $orders->u_adds_2 == "") {{ 'N/A' }} @else{{ $orders->u_adds.", ".$orders->u_adds_2.", ".$orders->u_city.", " }}@if($orders->u_province !=""){{ $orders->u_province.", " }} @endif @endif
{{$orders->u_email}}
{{$orders->u_contact}}
@endif
Delivery Address
{{$orders->shp_u_name.' '.$orders->shp_u_lname}}
@if($orders->shp_u_adds == "" && $orders->shp_u_adds_2 == "") {{ 'N/A' }} @else{{ $orders->shp_u_adds.", ".$orders->shp_u_adds_2.", ".$orders->shp_u_city.", " }}@if($orders->shp_u_province !=""){{ $orders->shp_u_province.", " }} @endif @endif
{{$orders->shp_u_email}}
{{$orders->shp_u_contact}}
@endsection