@extends(EcommerceHelper::viewPath('customers.master'))
@section('title', trans('plugins/ecommerce::customer-dashboard.order_information'))
@section('content')
@include(EcommerceHelper::viewPath('includes.order-tracking-detail'))
@if ($order->isPaymentProofEnabled())
@if ($order->canBeCanceled())
{{ trans('plugins/ecommerce::customer-dashboard.payment_proof') }}
@if (! $order->proof_file)
{{ trans('plugins/ecommerce::customer-dashboard.payment_proof_upload_description') }}
@else
{{ trans('plugins/ecommerce::customer-dashboard.uploaded_payment_proof') }}
{{ trans('plugins/ecommerce::customer-dashboard.upload_new_receipt_description') }}
@endif
{{ trans('plugins/ecommerce::customer-dashboard.upload_file_types_description') }}
@elseif ($order->proof_file)
{{ trans('plugins/ecommerce::customer-dashboard.payment_proof') }}
{{ trans('plugins/ecommerce::customer-dashboard.uploaded_payment_proof') }}
@endif
@endif
{!! apply_filters('ecommerce_customer_order_view_before_actions', null, $order) !!}
@if ($order->canBeCanceled())
{!! $cancelOrderForm->renderForm() !!}
@endif
@if($order->shipment->can_confirm_delivery)
@endif
@stop