@extends('frontend.master') @section('title') Order Track @endsection @section('content')
@if (!empty($order))
Order Date

{{ date('d M Y', strtotime(@$order->created_at)) }}

shopping by:

{{ @$order?->billingInfo?->name }}

status:

{{ @$order->order_status }}

tracking:

{{ @$order->invoice_no }}

  • pending
  • @if (@$order->order_status == 'canceled')
  • Processing
  • on the way
  • Canceled
  • @else
  • Processing
  • on the way
  • Delivered
  • @endif
@endif
@endsection