@extends(EcommerceHelper::viewPath('customers.master')) @section('content')

{{ __('Order information') }}


@if ($logo = theme_option('logo_in_the_checkout_page') ?: theme_option('logo')) {{ theme_option('site_title') }}
@endif {{ setting('contact_address') }}

{{ __('Order number') }}: {{ $order->code }}

{{ __('Time') }}: {{ $order->created_at->format('h:m d/m/Y') }}
@include('plugins/ecommerce::themes.includes.order-tracking-detail')
@if ($order->isInvoiceAvailable()) {{ __('Print invoice') }}  {{ __('Download invoice') }} @endif @if ($order->canBeCanceled()) {{ __('Cancel order') }} @endif @if ($order->canBeReturned()) {{ __('Return Product(s)') }} @endif
@endsection