{{ core()->formatDate($order->created_at, 'd M Y') }}
@extends('shop::customers.account.index') @section('page_title') {{ __('shop::app.customer.account.order.view.page-tile', ['order_id' => $order->increment_id]) }} @endsection @push('css') @endpush @section('page-detail-wrapper')
{{ __('shop::app.customer.account.order.view.SKU') }} | {{ __('shop::app.customer.account.order.view.product-name') }} | {{ __('shop::app.customer.account.order.view.price') }} | {{ __('shop::app.customer.account.order.view.item-status') }} | {{ __('shop::app.customer.account.order.view.subtotal') }} | {{ __('shop::app.customer.account.order.view.tax-percent') }} | {{ __('shop::app.customer.account.order.view.tax-amount') }} | {{ __('shop::app.customer.account.order.view.grand-total') }} |
---|---|---|---|---|---|---|---|
{{ $item->getTypeInstance()->getOrderedItem($item)->sku }} | {{ $item->name }} @if (isset($item->additional['attributes'])) | @endif{{ core()->formatPrice($item->price, $order->order_currency_code) }} | {{ __('shop::app.customer.account.order.view.item-ordered', ['qty_ordered' => $item->qty_ordered]) }} {{ $item->qty_invoiced ? __('shop::app.customer.account.order.view.item-invoice', ['qty_invoiced' => $item->qty_invoiced]) : '' }} {{ $item->qty_shipped ? __('shop::app.customer.account.order.view.item-shipped', ['qty_shipped' => $item->qty_shipped]) : '' }} {{ $item->qty_refunded ? __('shop::app.customer.account.order.view.item-refunded', ['qty_refunded' => $item->qty_refunded]) : '' }} {{ $item->qty_canceled ? __('shop::app.customer.account.order.view.item-canceled', ['qty_canceled' => $item->qty_canceled]) : '' }} | {{ core()->formatPrice($item->total, $order->order_currency_code) }} | {{ number_format($item->tax_percent, 2) }}% | {{ core()->formatPrice($item->tax_amount, $order->order_currency_code) }} | {{ core()->formatPrice($item->total + $item->tax_amount - $item->discount_amount, $order->order_currency_code) }} |
{{ __('shop::app.customer.account.order.view.subtotal') }} | {{ core()->formatPrice($order->sub_total, $order->order_currency_code) }} | |
{{ __('shop::app.customer.account.order.view.shipping-handling') }} | {{ core()->formatPrice($order->shipping_amount, $order->order_currency_code) }} | |
{{ __('shop::app.customer.account.order.view.coupon') }} @if ($order->coupon_code) ({{ $order->coupon_code }}) @endif | {{ core()->formatPrice($order->discount_amount, $order->order_currency_code) }} | |
{{ __('shop::app.customer.account.order.view.tax') }} | {{ core()->formatPrice($order->tax_amount, $order->order_currency_code) }} | |
{{ __('shop::app.customer.account.order.view.grand-total') }} | {{ core()->formatPrice($order->grand_total, $order->order_currency_code) }} | |
{{ __('shop::app.customer.account.order.view.total-paid') }} | {{ core()->formatPrice($order->grand_total_invoiced, $order->order_currency_code) }} | |
{{ __('shop::app.customer.account.order.view.total-refunded') }} | {{ core()->formatPrice($order->grand_total_refunded, $order->order_currency_code) }} | |
{{ __('shop::app.customer.account.order.view.total-due') }} | @if($order->status !== 'canceled'){{ core()->formatPrice($order->total_due, $order->order_currency_code) }} | @else{{ core()->formatPrice(0.00, $order->order_currency_code) }} | @endif
{{ __('shop::app.customer.account.order.view.SKU') }} | {{ __('shop::app.customer.account.order.view.product-name') }} | {{ __('shop::app.customer.account.order.view.price') }} | {{ __('shop::app.customer.account.order.view.qty') }} | {{ __('shop::app.customer.account.order.view.subtotal') }} | {{ __('shop::app.customer.account.order.view.tax-amount') }} | {{ __('shop::app.customer.account.order.view.grand-total') }} |
---|---|---|---|---|---|---|
{{ $item->getTypeInstance()->getOrderedItem($item)->sku }} | {{ $item->name }} | {{ core()->formatPrice($item->price, $order->order_currency_code) }} | {{ $item->qty }} | {{ core()->formatPrice($item->total, $order->order_currency_code) }} | {{ core()->formatPrice($item->tax_amount, $order->order_currency_code) }} | {{ core()->formatPrice($item->total + $item->tax_amount, $order->order_currency_code) }} |
{{ __('shop::app.customer.account.order.view.subtotal') }} | {{ core()->formatPrice($invoice->sub_total, $order->order_currency_code) }} |
{{ __('shop::app.customer.account.order.view.shipping-handling') }} | {{ core()->formatPrice($invoice->shipping_amount, $order->order_currency_code) }} |
{{ __('shop::app.customer.account.order.view.discount') }} | {{ core()->formatPrice($invoice->discount_amount, $order->order_currency_code) }} |
{{ __('shop::app.customer.account.order.view.tax') }} | {{ core()->formatPrice($invoice->tax_amount, $order->order_currency_code) }} |
{{ __('shop::app.customer.account.order.view.grand-total') }} | {{ core()->formatPrice($invoice->grand_total, $order->order_currency_code) }} |
{{ __('shop::app.customer.account.order.view.SKU') }} | {{ __('shop::app.customer.account.order.view.product-name') }} | {{ __('shop::app.customer.account.order.view.qty') }} |
---|---|---|
{{ $item->sku }} | {{ $item->name }} | {{ $item->qty }} |
{{ __('shop::app.customer.account.order.view.SKU') }} | {{ __('shop::app.customer.account.order.view.product-name') }} | {{ __('shop::app.customer.account.order.view.price') }} | {{ __('shop::app.customer.account.order.view.qty') }} | {{ __('shop::app.customer.account.order.view.subtotal') }} | {{ __('shop::app.customer.account.order.view.tax-amount') }} | {{ __('shop::app.customer.account.order.view.grand-total') }} |
---|---|---|---|---|---|---|
{{ $item->child ? $item->child->sku : $item->sku }} | {{ $item->name }} | {{ core()->formatPrice($item->price, $order->order_currency_code) }} | {{ $item->qty }} | {{ core()->formatPrice($item->total, $order->order_currency_code) }} | {{ core()->formatPrice($item->tax_amount, $order->order_currency_code) }} | {{ core()->formatPrice($item->total + $item->tax_amount, $order->order_currency_code) }} |
{{ __('shop::app.common.no-result-found') }} | ||||||
{{ __('shop::app.customer.account.order.view.subtotal') }} | {{ core()->formatPrice($refund->sub_total, $order->order_currency_code) }} |
{{ __('shop::app.customer.account.order.view.shipping-handling') }} | {{ core()->formatPrice($refund->shipping_amount, $order->order_currency_code) }} |
{{ __('shop::app.customer.account.order.view.discount') }} | {{ core()->formatPrice($order->discount_amount, $order->order_currency_code) }} |
{{ __('shop::app.customer.account.order.view.tax') }} | {{ core()->formatPrice($refund->tax_amount, $order->order_currency_code) }} |
{{ __('shop::app.customer.account.order.view.adjustment-refund') }} | {{ core()->formatPrice($refund->adjustment_refund, $order->order_currency_code) }} |
{{ __('shop::app.customer.account.order.view.adjustment-fee') }} | {{ core()->formatPrice($refund->adjustment_fee, $order->order_currency_code) }} |
{{ __('shop::app.customer.account.order.view.grand-total') }} | {{ core()->formatPrice($refund->grand_total, $order->order_currency_code) }} |
{{ $additionalDetails['value'] }}