{{ __('Customer information') }}

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

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

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

@endif

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

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

@if (!empty($isShowShipping))

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

@endif

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

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