@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') }} |
|---|---|---|---|---|
|
{{ sub_string($product['name'], 64) }}
{{ $product['product_sku'] }}
@if ($product['variant_label'])
- {{ $product['variant_label'] }}
@endif
@if ($product['item_type_label'])
{{ $product['item_type_label'] }}
@endif
@if (!empty($product['options']))
@endif
|
@php($reviewed = \InnoShop\Common\Repositories\ReviewRepo::orderReviewed(current_customer_id(), $product['id'])) @if ($order->status == 'completed' && !$reviewed && $product['item_type'] === 'normal') @endif | {{ $product['price_format'] }} | {{ $product['quantity'] }} | {{ $product['subtotal_format'] }} |
| {{ $total['title'] }} | {{ $total->value_format }} | |||
| {{ __('front/order.order_total') }} | {{ $order->total_format }} |
{{ __('common/address.name') }}: {{ $order->shipping_customer_name }}
{{ __('common/address.phone') }}: {{ $order->shipping_telephone }}
{{ __('common/address.zipcode') }}: {{ $order->shipping_zipcode }}
{{ __('common/address.address_1') }}: {{ $order->shipping_address_1 }}
@if ($order->shipping_address_2){{ __('common/address.address_2') }}: {{ $order->shipping_address_2 }}
@endif{{ __('common/address.region') }}: {{ $order->shipping_city }}, {{ $order->shipping_state }} , {{ $order->shipping_country }}
{{ __('common/address.name') }}: {{ $order->billing_customer_name }}
{{ __('common/address.phone') }}: {{ $order->billing_telephone }}
{{ __('common/address.zipcode') }}: {{ $order->billing_zipcode }}
{{ __('common/address.address_1') }}: {{ $order->billing_address_1 }}
@if ($order->billing_address_2){{ __('common/address.address_2') }}: {{ $order->billing_address_2 }}
@endif{{ __('common/address.region') }}: {{ $order->billing_city }}, {{ $order->billing_state }} , {{ $order->billing_country }}
| {{ __('front/order.express_code') }} | {{ __('front/order.express_company') }} | {{ __('front/order.express_number') }} | {{ __('front/order.time') }} | {{ __('front/order.shipment_info') }} |
|---|---|---|---|---|
| {{ $shipment->express_code }} | {{ $shipment->express_company }} | {{ $shipment->express_number }} | {{ $shipment->created_at }} |
| {{ __('front/order.order_status') }} | {{ __('front/order.remark') }} | {{ __('front/order.order_date') }} |
|---|---|---|
| {{ $history->status }} | {{ $history->comment }} | {{ $history->created_at }} |