@extends('plugins/ecommerce::themes.customers.master') @section('content')
# | {{ __('Image') }} | {{ __('Product') }} | {{ __('Amount') }} | {{ __('Quantity') }} | {{ __('Total') }} |
---|---|---|---|---|---|
{{ $key + 1 }} |
|
{{ $product->name }} @if ($product->sku) ({{ $product->sku }}) @endif
@if ($product->is_variation)
{{ $product->variation_attributes }} @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 |
{{ format_price($orderProduct->price) }} | {{ $orderProduct->qty }} | {{ format_price($orderProduct->price * $orderProduct->qty) }} |