{!! Theme::partial('page-header', [ 'title' => __('Order Tracking'), 'description' => __('') ]) !!}

{{ __('Tracking Your Order Status') }}

{{-- @include('plugins/ecommerce::themes.includes.order-tracking-detail') --}}
@if (!empty($order))

{{ __('Order Details') }}

@include('plugins/ecommerce::themes.includes.order-tracking-detail') @if (EcommerceHelper::isPaymentProofEnabled()) @if ($order->canBeCanceled())
{{ __('Payment Proof') }}
@if (!$order->proof_file)

{{ __('The order is currently being processed. For expedited processing, kindly upload a copy of your payment proof:') }}

@else

{{ __('You have uploaded a copy of your payment proof.') }}

{{ __('View Receipt:') }} {{ $order->proof_file }}

{{ __('Or you can upload a new one, the old one will be replaced.') }}

@endif
{{ __('You can upload the following file types: jpg, jpeg, png, pdf and max file size is 2MB.') }}
@elseif ($order->proof_file)
{{ __('Payment Proof') }}

{{ __('You have uploaded a copy of your payment proof.') }}

{{ __('View Receipt:') }} {{ $order->proof_file }}
@endif @endif
@endif