{{--Customer order detail page--}} @extends('shop::customers.account.index') @section('page_title') {{ __('shop::app.customer.account.order.view.page-tile', ['order_id' => $order->increment_id]) }} @endsection @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') }} | |
---|---|---|---|---|---|
|
{{ $item->getTypeInstance()->getOrderedItem($item)->sku }} | {{ $item->name }} | {{ 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) }} |
{{ __('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.tax') }} | {{ core()->formatPrice($order->tax_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.grand-total') }} | {{ core()->formatPrice($order->grand_total, $order->order_currency_code) }} | ||||
{{ __('shop::app.customer.account.order.view.total-paid') }} | {{ core()->formatPrice($order->base_paid_amount, $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') }} | {{ core()->formatPrice($order->base_balance_amount, $order->order_currency_code) }} |
# | {{ __('admin::app.sales.shipments.tracking-number') }} | {{ __('admin::app.sales.shipments.carrier-title') }} | {{ __('admin::app.sales.shipments.date') }} |
---|---|---|---|
{{ $shipment->id }} | {{ $shipment->track_number }} | {{ config('shipping.courierPartners')[$shipment->carrier_title] }} | {{$shipment->created_at}} |
We could not find any records. |
# | {{ __('admin::app.sales.refunds.refund-id') }} | {{ __('admin::app.sales.refunds.date') }} | {{ __('admin::app.sales.refunds.refund-amount') }} | {{ __('admin::app.sales.refunds.cancellation-amount') }} |
---|---|---|---|---|
{{ $refund->id }} | {{ $refund->refund_id }} | {{ $refund->created_at }} | {{ core()->currency($refund->refund_amount) }} | {{ core()->currency($refund->cancellation_amount) }} |
We could not find any records. |