@extends('panel::layouts.app') @section('title', __('panel/menu.orders')) @push('header') @endpush @section('page-title-right')
@foreach($next_statuses as $status) @endforeach
{{ __('panel/order.comment') }}
@endsection @section('content')
{{ __('panel/order.order_info') }}
{{ __('panel/order.number') }} {{ __('panel/order.created_at') }} {{ __('panel/order.total') }} {{ __('panel/order.billing_method_code') }} {{ __('panel/order.shipping_method_code') }} {{ __('panel/common.status') }}
{{ $order->number }} {{ $order->created_at }} {{ $order->total_format }} {{ $order->billing_method_code }} {{ $order->shipping_method_code }} {{ $order->status }}
{{ __('panel/order.order_items') }}
@hookupdate('panel.orders.info.order_items') @foreach ($order->items as $product) @endforeach @foreach ($order->fees as $total) @endforeach
{{ __('panel/common.id') }} {{ __('panel/order.product') }} {{ __('panel/order.sku_code') }} {{ __('panel/order.quantity') }} {{ __('panel/order.unit_price') }} {{ __('panel/order.subtotal') }}
{{ $product->id }}
{{ $product->name }}
{{ $product->product_sku }} {{ $product->quantity }} {{ $product->price_format }} {{ $product->subtotal_format }}
{{ $total->title }} {{ $total->value_format }}
{{ __('panel/order.total') }} {{ $order->total_format }}
@endhookupdate
{{ __('panel/order.address') }}
{{ __('panel/order.shipping_address') }}

{{ $order->shipping_customer_name }}

{{ $order->shipping_telephone }} {{ $order->shipping_zipcode }}

{{ $order->shipping_address_1 }} {{ $order->shipping_address_2 }}

{{ $order->shipping_city }} {{ $order->shipping_state }} {{ $order->shipping_country }}

{{ __('panel/order.billing_address') }}

{{ $order->billing_customer_name }}

{{ $order->billing_telephone }} {{ $order->billing_zipcode }}

{{ $order->billing_address_1 }} {{ $order->billing_address_2 }}

{{ $order->billing_city }} {{ $order->billing_state }} {{ $order->billing_country }}

{{ __('front/checkout.order_comment') }}
{{ $order->comment }}
{{ __('panel/order.history') }}
@foreach($order->histories as $history) @endforeach
{{ __('panel/order.status') }} {{ __('panel/order.comment') }} {{ __('panel/order.date_time') }}
{{ $history->status }} {{ $history->comment }} {{ $history->created_at }}
@endsection @push('footer') @endpush