@extends(Theme::getThemeNamespace() . '::views.ecommerce.customers.master') @section('content')
{{ $order->description }}
# | {{ __('Image') }} | {{ __('Product') }} | {{ __('Amount') }} | {{ __('Quantity') }} | {{ __('Total') }} |
---|---|---|---|---|---|
{{ $loop->index + 1 }} |
|
{{ $orderProduct->product_name }} @if ($product && $product->sku) ({{ $product->sku }}) @endif
@if ($product && $product->is_variation)
@php $attributes = get_product_attributes($product->id) @endphp @if (!empty($attributes)) @foreach ($attributes as $attribute) {{ $attribute->attribute_set_title }}: {{ $attribute->title }}@if (!$loop->last), @endif @endforeach @endif @endif @if (!empty($orderProduct->options) && is_array($orderProduct->options)) @foreach($orderProduct->options as $option) @if (!empty($option['key']) && !empty($option['value'])){{ $option['key'] }}: {{ $option['value'] }} @endif @endforeach @endif @if (is_plugin_active('marketplace') && $product && $product->original_product->store->id){{ __('Sold by') }}: {{ $product->original_product->store->name }} @endif |
{{ $orderProduct->amount_format }} | {{ $orderProduct->qty }} | {{ $orderProduct->total_format }} |
{{ __('Shipping Status') }}: {!! BaseHelper::clean($order->shipment->status->toHtml()) !!}
@if ($order->shipment->shipping_company_name){{ __('Shipping Company Name') }}: {{ $order->shipment->shipping_company_name }}
@endif @if ($order->shipment->tracking_id){{ __('Tracking ID') }}: {{ $order->shipment->tracking_id }}
@endif @if ($order->shipment->tracking_link){{ __('Tracking Link') }}: {{ $order->shipment->tracking_link }}
@endif @if ($order->shipment->note){{ __('Delivery Notes') }}: {{ $order->shipment->note }}
@endif @if ($order->shipment->estimate_date_shipped){{ __('Estimate Date Shipped') }}: {{ $order->shipment->estimate_date_shipped }}
@endif @if ($order->shipment->date_shipped){{ __('Date Shipped') }}: {{ $order->shipment->date_shipped }}
@endif @endif