@foreach ($sellerOrder->items as $orderItem) @endforeach
@lang('marketplace::app.seller.orders.view.product') @lang('marketplace::app.seller.orders.view.price') @lang('marketplace::app.seller.orders.view.item-status') @lang('marketplace::app.seller.orders.view.sub-total')

{{ $orderItem->item->name }}

@lang('marketplace::app.seller.orders.view.sku', ['sku' => $orderItem->item->sku])

@if (isset($orderItem->item->additional['attributes']))
@foreach ($orderItem->item->additional['attributes'] as $attribute) {{ $attribute['attribute_name'] }} : {{ $attribute['option_label'] }}
@endforeach
@endif
{{ core()->formatBasePrice($orderItem->item->base_price) }}
@lang('marketplace::app.seller.orders.view.item-ordered', ['qty_ordered' => $orderItem->item->qty_ordered]) {{ $orderItem->item->qty_invoiced ? __('marketplace::app.seller.orders.view.item-invoice', ['qty_invoiced' => $orderItem->item->qty_invoiced]) : '' }} {{ $orderItem->item->qty_shipped ? __('marketplace::app.seller.orders.view.item-shipped', ['qty_shipped' => $orderItem->item->qty_shipped]) : '' }} {{ $orderItem->item->qty_refunded ? __('marketplace::app.seller.orders.view.item-refunded', ['qty_refunded' => $orderItem->item->qty_refunded]) : '' }} {{ $orderItem->item->qty_canceled ? __('marketplace::app.seller.orders.view.item-canceled', ['qty_canceled' => $orderItem->item->qty_canceled]) : '' }}
{{ core()->formatBasePrice($orderItem->item->base_total) }}

@lang('marketplace::app.seller.orders.view.total')

-

{{ core()->formatBasePrice($orderItem->base_seller_total) }}

@lang('marketplace::app.seller.orders.view.discount') @if ($sellerOrder->order->coupon_code) ({{ $sellerOrder->order->coupon_code }}) @endif

-

{{ core()->formatBasePrice($orderItem->item->base_discount_amount) }}

@lang('marketplace::app.seller.orders.view.admin-commission')

-

{{ core()->formatBasePrice($orderItem->base_commission) }}

@lang('marketplace::app.seller.orders.view.tax')

-

{{ core()->formatBasePrice($orderItem->item->base_tax_amount) }}

@if (core()->getConfigData('sales.taxes.sales.display_prices') != 'including_tax')

@if (core()->getConfigData('sales.taxes.sales.display_prices') == 'both') @lang('marketplace::app.seller.orders.view.price-excl-tax') @else @lang('marketplace::app.seller.orders.view.price') @endif

-

{{ core()->formatBasePrice($orderItem->item->base_price) }}

@endif @if (core()->getConfigData('sales.taxes.sales.display_prices') == 'including_tax' || core()->getConfigData('sales.taxes.sales.display_prices') == 'both' )

@lang('marketplace::app.seller.orders.view.price-incl-tax')

-

{{ core()->formatBasePrice($orderItem->item->base_price_incl_tax) }}

@endif @if (core()->getConfigData('sales.taxes.sales.display_subtotal') != 'including_tax')

@if (core()->getConfigData('sales.taxes.sales.display_subtotal') == 'both') @lang('marketplace::app.seller.orders.view.sub-total-excl-tax') @else @lang('marketplace::app.seller.orders.view.sub-total') @endif

-

{{ core()->formatBasePrice($orderItem->item->base_total) }}

@endif @if (core()->getConfigData('sales.taxes.sales.display_subtotal') == 'including_tax' || core()->getConfigData('sales.taxes.sales.display_subtotal') == 'both' )

@lang('marketplace::app.seller.orders.view.sub-total-incl-tax')

-

{{ core()->formatBasePrice($orderItem->item->base_total_incl_tax) }}

@endif
@if (core()->getConfigData('sales.taxes.sales.display_subtotal') != 'including_tax')

@if (core()->getConfigData('sales.taxes.sales.display_subtotal') == 'both') @lang('marketplace::app.seller.orders.view.sub-total-excl-tax') @else @lang('marketplace::app.seller.orders.view.sub-total') @endif

-

{{ core()->formatBasePrice($sellerOrder->base_sub_total) }}

@endif @if (core()->getConfigData('sales.taxes.sales.display_subtotal') == 'including_tax' || core()->getConfigData('sales.taxes.sales.display_subtotal') == 'both' )

@lang('marketplace::app.seller.orders.view.sub-total-incl-tax')

-

{{ core()->formatBasePrice($sellerOrder->base_sub_total_incl_tax) }}

@endif @if ($sellerOrder->order->haveStockableItems()) @if (core()->getConfigData('sales.taxes.sales.display_shipping_amount') != 'including_tax')

@if (core()->getConfigData('sales.taxes.sales.display_shipping_amount') == 'both') @lang('marketplace::app.seller.orders.view.shipping-handling-excl-tax') @else @lang('marketplace::app.seller.orders.view.shipping-handling') @endif

-

{{ core()->formatBasePrice(0) }}

@endif @if (core()->getConfigData('sales.taxes.sales.display_shipping_amount') == 'including_tax' || core()->getConfigData('sales.taxes.sales.display_shipping_amount') == 'both' )

@lang('marketplace::app.seller.orders.view.shipping-handling-incl-tax')

-

{{ core()->formatBasePrice(0) }}

@endif @endif

@lang('marketplace::app.seller.orders.view.discount') @if ($sellerOrder->order->coupon_code) ({{ $sellerOrder->order->coupon_code }}) @endif

-

{{ core()->formatBasePrice($sellerOrder->base_discount_amount) }}

@lang('marketplace::app.seller.orders.view.tax')

-

{{ core()->formatBasePrice($sellerOrder->base_tax_amount) }}

@lang('marketplace::app.seller.orders.view.total-refunded')

-

{{ core()->formatBasePrice($sellerOrder->base_grand_total_refunded - $sellerOrder->base_shipping_refunded) }}

@lang('marketplace::app.seller.orders.view.total-seller-amt')

-

{{ core()->formatBasePrice($sellerOrder->base_seller_total) }}

@lang('marketplace::app.seller.orders.view.admin-commission')

-

{{ core()->formatBasePrice($sellerOrder->base_commission) }}

@lang('marketplace::app.seller.orders.view.total-paid')

-

{{ core()->formatBasePrice($sellerOrder->base_grand_total_invoiced - $sellerOrder->base_shipping_invoiced) }}

@lang('marketplace::app.seller.orders.view.total-due')

-

@if ($sellerOrder->status !== 'canceled') {{ core()->formatBasePrice($sellerOrder->base_total_due ? $sellerOrder->base_total_due : 0) }} @else {{ core()->formatBasePrice(0.00) }} @endif

@lang('marketplace::app.seller.orders.view.grand-total')

-

{{ core()->formatBasePrice($sellerOrder->base_grand_total - $sellerOrder->base_shipping_amount) }}