@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 |
{{ $orderProduct->amount_format }} | {{ $orderProduct->qty }} | {{ $orderProduct->total_format }} |