{{ __('Customer information') }}

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

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

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

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

{{ __('Shipping method') }}: {{ $order->shipping_method_name }} - @if ($order->shipping_amount > 0) {{ format_price($order->shipping_amount) }} @else {{ __('Free shipping') }} @endif

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

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