{{ __('Customer information') }}

@if ($order->address->id) @if ($order->address->name)

{{ __('Full name') }}: {{ $order->address->name }}

@endif @if ($order->address->phone)

{{ __('Phone') }}: {{ $order->address->phone }}

@endif @if ($order->address->email)

{{ __('Email') }}: {{ $order->address->email }}

@endif @if ($order->full_address)

{{ __('Address') }}: {{ $order->full_address }}

@endif @endif @if (!empty($isShowShipping))

{{ __('Shipping method') }}: {{ $order->shipping_method_name }} - {{ format_price($order->shipping_amount) }}

@endif @if (is_plugin_active('payment'))

{{ __('Payment method') }}: {{ $order->payment->payment_channel->label() }}

{{ __('Payment status') }}: {!! $order->payment->status->toHtml() !!}

@endif