@lang('shop::app.customers.account.orders.view.information.sku') | @lang('shop::app.customers.account.orders.view.information.product-name') | @lang('shop::app.customers.account.orders.view.information.price') | @lang('shop::app.customers.account.orders.view.information.item-status') | @lang('shop::app.customers.account.orders.view.information.subtotal') |
---|---|---|---|---|
{{ $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 |
@if (core()->getConfigData('sales.taxes.sales.display_prices') == 'including_tax') {{ core()->formatPrice($item->price_incl_tax, $order->order_currency_code) }} @elseif (core()->getConfigData('sales.taxes.sales.display_prices') == 'both') {{ core()->formatPrice($item->price_incl_tax, $order->order_currency_code) }} @lang('shop::app.customers.account.orders.view.information.excl-tax') {{ core()->formatPrice($item->price, $order->order_currency_code) }} @else {{ core()->formatPrice($item->price, $order->order_currency_code) }} @endif | @if($item->qty_ordered) @lang('shop::app.customers.account.orders.view.information.ordered-item', ['qty_ordered' => $item->qty_ordered]) @endif @if($item->qty_invoiced) @lang('shop::app.customers.account.orders.view.information.invoiced-item', ['qty_invoiced' => $item->qty_invoiced]) @endif @if($item->qty_shipped) @lang('shop::app.customers.account.orders.view.information.item-shipped', ['qty_shipped' => $item->qty_shipped]) @endif @if($item->qty_refunded) @lang('shop::app.customers.account.orders.view.information.item-refunded', ['qty_refunded' => $item->qty_refunded]) @endif @if($item->qty_canceled) @lang('shop::app.customers.account.orders.view.information.item-canceled', ['qty_canceled' => $item->qty_canceled]) @endif | @if (core()->getConfigData('sales.taxes.sales.display_prices') == 'including_tax') {{ core()->formatPrice($item->total_incl_tax, $order->order_currency_code) }} @elseif (core()->getConfigData('sales.taxes.sales.display_prices') == 'both') {{ core()->formatPrice($item->total_incl_tax, $order->order_currency_code) }} @lang('shop::app.customers.account.orders.view.information.excl-tax') {{ core()->formatPrice($item->total, $order->order_currency_code) }} @else {{ core()->formatPrice($item->total, $order->order_currency_code) }} @endif |
{{ core()->formatPrice($order->sub_total_incl_tax, $order->order_currency_code) }}
{{ core()->formatPrice($order->sub_total, $order->order_currency_code) }}
{{ core()->formatPrice($order->sub_total_incl_tax, $order->order_currency_code) }}
{{ core()->formatPrice($order->sub_total, $order->order_currency_code) }}
{{ core()->formatPrice($order->shipping_amount_incl_tax, $order->order_currency_code) }}
{{ core()->formatPrice($order->shipping_amount, $order->order_currency_code) }}
{{ core()->formatPrice($order->shipping_amount_incl_tax, $order->order_currency_code) }}
{{ core()->formatPrice($order->shipping_amount, $order->order_currency_code) }}
{{ core()->formatPrice($order->tax_amount, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.information.discount') @if ($order->coupon_code) ({{ $order->coupon_code }}) @endif
{{ core()->formatPrice($order->discount_amount, $order->order_currency_code) }}
{{ core()->formatPrice($order->grand_total, $order->order_currency_code) }}
{{ core()->formatPrice($order->grand_total_invoiced, $order->order_currency_code) }}
{{ core()->formatPrice($order->grand_total_refunded, $order->order_currency_code) }}
@if($order->status !== \Webkul\Sales\Models\Order::STATUS_CANCELED) {{ core()->formatPrice($order->total_due, $order->order_currency_code) }} @else {{ core()->formatPrice(0.00, $order->order_currency_code) }} @endif
#{{ $order->increment_id }}
{{ core()->formatDate($order->created_at, 'd M Y') }}
{{ ucfirst($order->status) }}
@break @case('pending'){{ ucfirst($order->status) }}
@break @case('closed'){{ ucfirst($order->status) }}
@break @case('processing'){{ ucfirst($order->status) }}
@break @case('canceled'){{ ucfirst($order->status) }}
@break @default{{ ucfirst($order->status) }}
@endswitch{{ $item->name }} @if (isset($item->additional['attributes']))
@lang('shop::app.customers.account.orders.view.information.ordered-item', ['qty_ordered' => $item->qty_ordered])
@endif @if($item->qty_invoiced)@lang('shop::app.customers.account.orders.view.information.invoiced-item', ['qty_invoiced' => $item->qty_invoiced])
@endif @if($item->qty_shipped)@lang('shop::app.customers.account.orders.view.information.item-shipped', ['qty_shipped' => $item->qty_shipped])
@endif @if($item->qty_refunded) @lang('shop::app.customers.account.orders.view.information.item-refunded', ['qty_refunded' => $item->qty_refunded]) @endif @if($item->qty_canceled)@lang('shop::app.customers.account.orders.view.information.item-canceled', ['qty_canceled' => $item->qty_canceled])
@endif{{ core()->formatPrice($item->price_incl_tax, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.information.excl-tax') {{ core()->formatPrice($item->price, $order->order_currency_code) }}
@else {{ core()->formatPrice($item->price, $order->order_currency_code) }} @endif{{ core()->formatPrice($item->total_incl_tax, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.invoices.excl-tax') {{ core()->formatPrice($item->total, $order->order_currency_code) }}
@else {{ core()->formatPrice($item->total, $order->order_currency_code) }} @endif{{ $item->tax_percent }}
{{ $item->tax_amount }}
{{ core()->formatPrice($order->grand_total, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.information.subtotal')
{{ core()->formatPrice($order->sub_total_incl_tax, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.information.subtotal-excl-tax')
{{ core()->formatPrice($order->sub_total, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.information.subtotal-incl-tax')
{{ core()->formatPrice($order->sub_total_incl_tax, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.information.subtotal')
{{ core()->formatPrice($order->sub_total, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.information.shipping-handling')
{{ core()->formatPrice($order->shipping_amount_incl_tax, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.information.shipping-handling-excl-tax')
{{ core()->formatPrice($order->shipping_amount, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.information.shipping-handling-incl-tax')
{{ core()->formatPrice($order->shipping_amount_incl_tax, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.information.shipping-handling')
{{ core()->formatPrice($order->shipping_amount, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.information.tax')
{{ core()->formatPrice($order->tax_amount, $order->order_currency_code) }}
@lang('shop::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('shop::app.customers.account.orders.view.information.grand-total')
{{ core()->formatPrice($order->grand_total, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.information.total-paid')
{{ core()->formatPrice($order->grand_total_invoiced, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.information.total-refunded')
{{ core()->formatPrice($order->grand_total_refunded, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.information.total-due')
@if($order->status !== \Webkul\Sales\Models\Order::STATUS_CANCELED) {{ core()->formatPrice($order->total_due, $order->order_currency_code) }} @else {{ core()->formatPrice(0.00, $order->order_currency_code) }} @endif
{{ $item->name }}
{{ core()->formatPrice($item->price_incl_tax, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.information.excl-tax') {{ core()->formatPrice($item->price, $order->order_currency_code) }}
@else {{ core()->formatPrice($item->price, $order->order_currency_code) }} @endif{{ core()->formatPrice($item->total_incl_tax, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.invoices.excl-tax') {{ core()->formatPrice($item->total, $order->order_currency_code) }}
@else {{ core()->formatPrice($item->total, $order->order_currency_code) }} @endif@lang('shop::app.customers.account.orders.view.invoices.subtotal')
{{ core()->formatPrice($invoice->sub_total_incl_tax, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.invoices.subtotal-excl-tax')
{{ core()->formatPrice($invoice->sub_total, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.invoices.subtotal')
{{ core()->formatPrice($invoice->sub_total, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.information.shipping-handling')
{{ core()->formatPrice($invoice->shipping_amount_incl_tax, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.invoices.shipping-handling-excl-tax')
{{ core()->formatPrice($invoice->shipping_amount, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.invoices.shipping-handling-incl-tax')
{{ core()->formatPrice($invoice->shipping_amount_incl_tax, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.invoices.shipping-handling')
{{ core()->formatPrice($invoice->shipping_amount, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.invoices.discount')
{{ core()->formatPrice($invoice->discount_amount, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.invoices.tax')
{{ core()->formatPrice($invoice->tax_amount, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.invoices.grand-total')
{{ core()->formatPrice($invoice->grand_total, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.invoices.sku') | @lang('shop::app.customers.account.orders.view.invoices.product-name') | @lang('shop::app.customers.account.orders.view.invoices.price') | @lang('shop::app.customers.account.orders.view.invoices.qty') | @lang('shop::app.customers.account.orders.view.invoices.subtotal') |
---|---|---|---|---|
{{ $item->getTypeInstance()->getOrderedItem($item)->sku }} | {{ $item->name }} | @if (core()->getConfigData('sales.taxes.sales.display_prices') == 'including_tax') {{ core()->formatPrice($item->price_incl_tax, $order->order_currency_code) }} @elseif (core()->getConfigData('sales.taxes.sales.display_prices') == 'both') {{ core()->formatPrice($item->price_incl_tax, $order->order_currency_code) }} @lang('shop::app.customers.account.orders.view.information.excl-tax') {{ core()->formatPrice($item->price, $order->order_currency_code) }} @else {{ core()->formatPrice($item->price, $order->order_currency_code) }} @endif | {{ $item->qty }} | @if (core()->getConfigData('sales.taxes.sales.display_prices') == 'including_tax') {{ core()->formatPrice($item->total_incl_tax, $order->order_currency_code) }} @elseif (core()->getConfigData('sales.taxes.sales.display_prices') == 'both') {{ core()->formatPrice($item->total_incl_tax, $order->order_currency_code) }} @lang('shop::app.customers.account.orders.view.invoices.excl-tax') {{ core()->formatPrice($item->total, $order->order_currency_code) }} @else {{ core()->formatPrice($item->total, $order->order_currency_code) }} @endif |
{{ core()->formatPrice($invoice->sub_total_incl_tax, $order->order_currency_code) }}
{{ core()->formatPrice($invoice->sub_total, $order->order_currency_code) }}
{{ core()->formatPrice($invoice->sub_total_incl_tax, $order->order_currency_code) }}
{{ core()->formatPrice($invoice->sub_total, $order->order_currency_code) }}
{{ core()->formatPrice($invoice->shipping_amount_incl_tax, $order->order_currency_code) }}
{{ core()->formatPrice($invoice->shipping_amount, $order->order_currency_code) }}
{{ core()->formatPrice($invoice->shipping_amount_incl_tax, $order->order_currency_code) }}
{{ core()->formatPrice($invoice->shipping_amount, $order->order_currency_code) }}
{{ core()->formatPrice($invoice->discount_amount, $order->order_currency_code) }}
{{ core()->formatPrice($invoice->tax_amount, $order->order_currency_code) }}
{{ core()->formatPrice($invoice->grand_total, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.shipments.sku') | @lang('shop::app.customers.account.orders.view.shipments.product-name') | @lang('shop::app.customers.account.orders.view.shipments.qty') |
---|---|---|
{{ $item->sku }} | {{ $item->name }} | {{ $item->qty }} |
{{ $item->name }}
@lang('shop::app.customers.account.orders.view.refunds.sku') | @lang('shop::app.customers.account.orders.view.refunds.product-name') | @lang('shop::app.customers.account.orders.view.refunds.price') | @lang('shop::app.customers.account.orders.view.refunds.qty') | @lang('shop::app.customers.account.orders.view.refunds.subtotal') |
---|---|---|---|---|
{{ $item->child ? $item->child->sku : $item->sku }} | {{ $item->name }} | @if (core()->getConfigData('sales.taxes.sales.display_prices') == 'including_tax') {{ core()->formatPrice($item->price_incl_tax, $order->order_currency_code) }} @elseif (core()->getConfigData('sales.taxes.sales.display_prices') == 'both') {{ core()->formatPrice($item->price_incl_tax, $order->order_currency_code) }} @lang('shop::app.customers.account.orders.view.information.excl-tax') {{ core()->formatPrice($item->price, $order->order_currency_code) }} @else {{ core()->formatPrice($item->price, $order->order_currency_code) }} @endif | {{ $item->qty }} | @if (core()->getConfigData('sales.taxes.sales.display_prices') == 'including_tax') {{ core()->formatPrice($item->total_incl_tax, $order->order_currency_code) }} @elseif (core()->getConfigData('sales.taxes.sales.display_prices') == 'both') {{ core()->formatPrice($item->total_incl_tax, $order->order_currency_code) }} @lang('shop::app.customers.account.orders.view.information.excl-tax') {{ core()->formatPrice($item->total, $order->order_currency_code) }} @else {{ core()->formatPrice($item->total, $order->order_currency_code) }} @endif |
@lang('shop::app.customers.account.orders.view.refunds.no-result-found') |
{{ $item->name }}
{{ core()->formatPrice($item->price_incl_tax, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.information.excl-tax') {{ core()->formatPrice($item->price, $order->order_currency_code) }}
@else {{ core()->formatPrice($item->price, $order->order_currency_code) }} @endif{{ core()->formatPrice($item->total_incl_tax, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.information.excl-tax') {{ core()->formatPrice($item->total, $order->order_currency_code) }}
@else {{ core()->formatPrice($item->total, $order->order_currency_code) }} @endif@lang('shop::app.customers.account.orders.view.refunds.subtotal')
{{ core()->formatPrice($refund->sub_total_incl_tax, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.refunds.subtotal-excl-tax')
{{ core()->formatPrice($refund->sub_total, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.refunds.subtotal-incl-tax')
{{ core()->formatPrice($refund->sub_total_incl_tax, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.refunds.subtotal')
{{ core()->formatPrice($refund->sub_total, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.refunds.shipping-handling')
{{ core()->formatPrice($refund->shipping_amount_incl_tax, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.refunds.shipping-handling-excl-tax')
{{ core()->formatPrice($refund->shipping_amount, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.refunds.shipping-handling-incl-tax')
{{ core()->formatPrice($refund->shipping_amount_incl_tax, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.refunds.shipping-handling')
{{ core()->formatPrice($refund->shipping_amount, $order->order_currency_code) }}
{{ core()->formatPrice($order->discount_amount, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.refunds.tax')
{{ core()->formatPrice($refund->tax_amount, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.refunds.adjustment-refund')
{{ core()->formatPrice($refund->adjustment_refund, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.refunds.adjustment-fee')
{{ core()->formatPrice($refund->adjustment_fee, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.refunds.grand-total')
{{ core()->formatPrice($refund->grand_total, $order->order_currency_code) }}
{{ core()->formatPrice($refund->sub_total_incl_tax, $order->order_currency_code) }}
{{ core()->formatPrice($refund->sub_total, $order->order_currency_code) }}
{{ core()->formatPrice($refund->sub_total_incl_tax, $order->order_currency_code) }}
{{ core()->formatPrice($refund->sub_total, $order->order_currency_code) }}
{{ core()->formatPrice($refund->shipping_amount_incl_tax, $order->order_currency_code) }}
{{ core()->formatPrice($refund->shipping_amount, $order->order_currency_code) }}
{{ core()->formatPrice($refund->shipping_amount_incl_tax, $order->order_currency_code) }}
{{ core()->formatPrice($refund->shipping_amount, $order->order_currency_code) }}
{{ core()->formatPrice($order->discount_amount, $order->order_currency_code) }}
{{ core()->formatPrice($refund->tax_amount, $order->order_currency_code) }}
{{ core()->formatPrice($refund->adjustment_refund, $order->order_currency_code) }}
{{ core()->formatPrice($refund->adjustment_fee, $order->order_currency_code) }}
{{ core()->formatPrice($refund->grand_total, $order->order_currency_code) }}
@lang('shop::app.customers.account.orders.view.billing-address')
@include ('shop::customers.account.orders.view.address', ['address' => $order->billing_address])
@lang('shop::app.customers.account.orders.view.shipping-address')
@include ('shop::customers.account.orders.view.address', ['address' => $order->shipping_address])
@lang('shop::app.customers.account.orders.view.shipping-method')
{{ $order->shipping_title }}
{!! view_render_event('bagisto.shop.customers.account.orders.view.shipping_method_details.after', ['order' => $order]) !!}@lang('shop::app.customers.account.orders.view.payment-method')
{{ core()->getConfigData('sales.payment_methods.' . $order->payment->method . '.title') }}
@if (! empty($additionalDetails))