@if($orderItem->date)

{{date("F", strtotime($orderItem->date))}}
{{date("d", strtotime($orderItem->date))}}
{{date("Y", strtotime($orderItem->date))}}

@endif
@if($orderItem->time)

{{date("l", strtotime($orderItem->date))}} - {{date("H:i", strtotime($orderItem->time))}}

@endif

{{$orderItem->product->title}}

@if($orderItem->location)
  • {{$orderItem->location}}
@endif

@Lang('account/account.Order ID') #{{$orderItem->order->order_no}}

@if($orderItem->order->status <= 2 && !$orderItem->order->cancel_requested && $orderItem->status <= 2 && !$orderItem->cancel_requested) @elseif($orderItem->order->status <= 2 && $orderItem->cancel_requested)

@Lang('account/account.Cancel Requested')

@elseif($orderItem->order->status == 3)

@Lang('account/account.Cancelled')

@endif