@extends(Theme::getThemeNamespace() . '::views.ecommerce.customers.master') @section('content') @php Theme::set('pageName', __('Order information')) @endphp
| # | {{ __('Image') }} | {{ __('Product') }} | {{ __('Amount') }} | {{ __('Quantity') }} | {{ __('Total') }} |
|---|---|---|---|---|---|
| {{ $key + 1 }} |
@if ($product)
|
{{ $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 |
{{ format_price($orderProduct->price) }} | {{ $orderProduct->qty }} | {{ format_price($orderProduct->price * $orderProduct->qty) }} |