@lang('store::app.customers.account.orders.view.information.sku') | @lang('store::app.customers.account.orders.view.information.product-name') | @lang('store::app.customers.account.orders.view.information.price') | @lang('store::app.customers.account.orders.view.information.item-status') | @lang('store::app.customers.account.orders.view.information.subtotal') | @lang('store::app.customers.account.orders.view.information.tax-percent') | @lang('store::app.customers.account.orders.view.information.tax-amount') | @lang('store::app.customers.account.orders.view.information.grand-total') |
---|---|---|---|---|---|---|---|
{{ $item->getTypeInstance()->getOrderedItem($item)->sku }} |
{{ $item->name }}
@if (isset($item->additional['attributes']))
@foreach ($item->additional['attributes'] as $attribute)
{{ $attribute['attribute_name'] }} : {{ $attribute['option_label'] }}
@endif
@endforeach |
{{ core()->formatPrice($item->price, $order->order_currency_code) }} | {{__('store::app.customers.account.orders.view.information.item-ordered', ['qty_ordered' => $item->qty_ordered])}} {{ $item->qty_invoiced ? __('store::app.customers.account.orders.view.information.item-invoice', ['qty_invoiced' => $item->qty_invoiced]) : '' }} {{ $item->qty_shipped ? __('store::app.customers.account.orders.view.information.item-shipped', ['qty_shipped' => $item->qty_shipped]) : '' }} {{ $item->qty_refunded ? __('store::app.customers.account.orders.view.information.item-refunded', ['qty_refunded' => $item->qty_refunded]) : '' }} {{ $item->qty_canceled ? __('store::app.customers.account.orders.view.information.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) }} |
@lang('store::app.customers.account.orders.view.information.subtotal')
-
{{ core()->formatPrice($order->sub_total, $order->order_currency_code) }}
@lang('store::app.customers.account.orders.view.information.shipping-handling')
-
{{ core()->formatPrice($order->shipping_amount, $order->order_currency_code) }}
@lang('store::app.customers.account.orders.view.information.discount') @if ($order->coupon_code) ({{ $order->coupon_code }}) @endif
-
{{ core()->formatPrice($order->discount_amount, $order->order_currency_code) }}
@lang('store::app.customers.account.orders.view.information.tax')
-
{{ core()->formatPrice($order->tax_amount, $order->order_currency_code) }}
@lang('store::app.customers.account.orders.view.information.grand-total')
-
{{ core()->formatPrice($order->grand_total, $order->order_currency_code) }}
@lang('store::app.customers.account.orders.view.information.total-paid')
-
{{ core()->formatPrice($order->grand_total_invoiced, $order->order_currency_code) }}
@lang('store::app.customers.account.orders.view.information.total-refunded')
-
{{ core()->formatPrice($order->grand_total_refunded, $order->order_currency_code) }}
@lang('store::app.customers.account.orders.view.information.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
@lang('store::app.customers.account.orders.view.invoices.individual-invoice', ['invoice_id' => $invoice->increment_id ?? $invoice->id])
@lang('store::app.customers.account.orders.view.invoices.sku') | @lang('store::app.customers.account.orders.view.invoices.product-name') | @lang('store::app.customers.account.orders.view.invoices.price') | @lang('store::app.customers.account.orders.view.invoices.qty') | @lang('store::app.customers.account.orders.view.invoices.subtotal') | @lang('store::app.customers.account.orders.view.invoices.tax-amount') | @lang('store::app.customers.account.orders.view.invoices.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) }} |
@lang('store::app.customers.account.orders.view.invoices.subtotal')
-
{{ core()->formatPrice($invoice->sub_total, $order->order_currency_code) }}
@lang('store::app.customers.account.orders.view.invoices.shipping-handling')
-
{{ core()->formatPrice($invoice->shipping_amount, $order->order_currency_code) }}
@lang('store::app.customers.account.orders.view.invoices.discount')
-
{{ core()->formatPrice($invoice->discount_amount, $order->order_currency_code) }}
@lang('store::app.customers.account.orders.view.invoices.tax')
-
{{ core()->formatPrice($invoice->tax_amount, $order->order_currency_code) }}
@lang('store::app.customers.account.orders.view.invoices.grand-total')
-
{{ core()->formatPrice($invoice->grand_total, $order->order_currency_code) }}
@lang('store::app.customers.account.orders.view.shipments.sku') | @lang('store::app.customers.account.orders.view.shipments.product-name') | @lang('store::app.customers.account.orders.view.shipments.qty') |
---|---|---|
{{ $item->sku }} | {{ $item->name }} | {{ $item->qty }} |
@lang('store::app.customers.account.orders.view.refunds.sku') | @lang('store::app.customers.account.orders.view.refunds.product-name') | @lang('store::app.customers.account.orders.view.refunds.price') | @lang('store::app.customers.account.orders.view.refunds.qty') | @lang('store::app.customers.account.orders.view.refunds.subtotal') | @lang('store::app.customers.account.orders.view.refunds.tax-amount') | @lang('store::app.customers.account.orders.view.refunds.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) }} |
@lang('store::app.customers.account.orders.view.refunds.no-result-found') |
@lang('store::app.customers.account.orders.view.refunds.subtotal')
-
{{ core()->formatPrice($refund->sub_total, $order->order_currency_code) }}
@lang('store::app.customers.account.orders.view.refunds.shipping-handling')
-
{{ core()->formatPrice($refund->shipping_amount, $order->order_currency_code) }}
@lang('store::app.customers.account.orders.view.refunds.discount')
-
{{ core()->formatPrice($order->discount_amount, $order->order_currency_code) }}
@lang('store::app.customers.account.orders.view.refunds.tax')
-
{{ core()->formatPrice($refund->tax_amount, $order->order_currency_code) }}
@lang('store::app.customers.account.orders.view.refunds.adjustment-refund')
-
{{ core()->formatPrice($refund->adjustment_refund, $order->order_currency_code) }}
@lang('store::app.customers.account.orders.view.refunds.adjustment-fee')
-
{{ core()->formatPrice($refund->adjustment_fee, $order->order_currency_code) }}
@lang('store::app.customers.account.orders.view.refunds.grand-total')
-
{{ core()->formatPrice($refund->grand_total, $order->order_currency_code) }}
@lang('store::app.customers.account.orders.view.billing-address')
@include ('admin::sales.address', ['address' => $order->billing_address])
{!! view_render_event('bagisto.shop.customers.account.orders.view.billing_address.after', ['order' => $order]) !!}@lang('store::app.customers.account.orders.view.shipping-address')
@include ('admin::sales.address', ['address' => $order->shipping_address]) {!! view_render_event('bagisto.shop.customers.account.orders.view.shipping_address.after', ['order' => $order]) !!}
@lang('store::app.customers.account.orders.view.shipping-method')
{{ $order->shipping_title }}
@lang('store::app.customers.account.orders.view.payment-method')
{{ core()->getConfigData('sales.payment_methods.' . $order->payment->method . '.title') }}
@if (! empty($additionalDetails))