@extends('layouts.app')
@section('body-class', 'page-order-info')
@section('content')
{{ __('front/order.order_number') }} | {{ __('front/order.order_date') }} | {{ __('front/order.order_total') }} | {{ __('front/order.order_status') }} |
---|---|---|---|
{{ $order->number }} | {{ $order->created_at->format('Y-m-d') }} | {{ $order->total_format }} | {{ $order->status_format }} |
{{ __('front/order.product') }} | {{ __('front/order.operation') }} | {{ __('front/order.price') }} | {{ __('front/order.quantity') }} | {{ __('front/order.subtotal') }} |
---|---|---|---|---|
{{ $product['name'] }}
{{ $product['product_sku'] }}
@if ($product['variant_label'])
- {{ $product['variant_label'] }}
@endif
|
{{ $product['price_format'] }} | {{ $product['quantity'] }} | {{ $product['price_format'] }} | |
{{ $total['title'] }} | {{ $total->value_format }} | |||
{{ __('front/order.order_total') }} | {{ $order->total_format }} |
{{ $order->shipping_customer_name }}
{{ $order->shipping_address_1 }} {{ $order->shipping_address_2 }}
{{ $order->shipping_city }}
{{ $order->shipping_state }}, {{ $order->shipping_country }}
{{ __('common/address.phone') }}: {{ $order->shipping_telephone }}
{{ $order->billing_customer_name }}
{{ $order->billing_address_1 }} {{ $order->billing_address_2 }}
{{ $order->billing_city }}
{{ $order->billing_state }}, {{ $order->billing_country }}
{{ __('common/address.phone') }}: {{ $order->billing_telephone }}
{{ __('front/order.order_status') }} | {{ __('front/order.remark') }} | {{ __('front/order.order_date') }} |
---|---|---|
{{ $history->status }} | {{ $history->comment }} | {{ $history->created_at }} |