{{-- Order Basic Information --}}
{{ __('panel/order.order_info') }}
{{ __('panel/order.number') }}:

{{ $order->number }}

{{ __('panel/order.customer_name') }}:

{{ $order->customer_name ?? ($order->customer->name ?? '') }}

{{ __('panel/order.created_at') }}:

{{ $order->created_at }}

{{ __('panel/common.status') }}:
{{ $order->status_format }}
{{ __('panel/order.total') }}:

{{ $order->total_format }}

{{ __('panel/order.billing_method_name') }}:

{{ $order->billing_method_name }}

{{ __('panel/order.shipping_method_name') }}:

{{ $order->shipping_method_name }}

{{ __('panel/order.email') }}:

{{ $order->email }}

@hookinsert('panel.orders.detail.order_info.bottom')
@hookinsert('panel.orders.detail.order_info.after')