@extends(Theme::getThemeNamespace('views.ecommerce.customers.master')) @section('content') @php Theme::set('pageName', __('Order information')) @endphp

{{ __('Order information') }}

@php $logo = theme_option('logo_in_the_checkout_page') ?: theme_option('logo'); @endphp @if ($logo) {{ theme_option('site_title') }}
@endif {{ setting('contact_address') }}
@include('plugins/ecommerce::themes.includes.order-tracking-detail')
@if ($order->isInvoiceAvailable()) {{ __('Download invoice') }} @endif @if ($order->canBeCanceled()) {{ __('Cancel order') }} @endif @if ($order->canBeReturned()) {{ __('Return Product(s)') }} @endif
@endsection