@extends('core/base::layouts.master') @section('content')
|
{{ $orderProduct->product_name }}
@php $attributes = get_product_attributes($product->id) @endphp
@if (!empty($attributes))
@foreach ($attributes as $attr)
@if (!$loop->last)
{{ $attr->attribute_set_title }}: {{ $attr->title }} {{ trans('plugins/ecommerce::order.sku') }} : {{ $product->sku }} @endif |
{{ format_price($orderProduct->price) }} | x | {{ $orderProduct->qty }} | {{ format_price($orderProduct->price * $orderProduct->qty) }} |
{{ trans('plugins/ecommerce::order.order_amount') }}: | {{ format_price($order->amount) }} | ||
{{ trans('plugins/ecommerce::order.total_amount') }}: | {{ format_price($order->amount + $order->shipping_amount - $order->discount_amount) }} |