@extends(EcommerceHelper::viewPath('customers.master')) @section('title', __('Order information')) @section('content')

{{ __('Order Details') }}

@if($order->shipment->can_confirm_delivery) @endif @if ($order->isInvoiceAvailable()) {{ __('Print invoice') }} {{ __('Download invoice') }} @endif @if ($order->canBeCanceled()) {{ __('Cancel order') }} @endif @if ($order->canBeReturned()) {{ __('Return Product(s)') }} @endif
@include(EcommerceHelper::viewPath('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
@if ($order->canBeCanceled()) @endif @if($order->shipment->can_confirm_delivery) @endif @stop