@lang('marketplace::app.admin.transactions.view.title', ['transaction_id' => $transaction->transaction_id])
| @lang('marketplace::app.seller.transactions.view.name') | @lang('marketplace::app.seller.transactions.view.price') | @lang('marketplace::app.seller.transactions.view.qty') | @lang('marketplace::app.seller.transactions.view.total') | @lang('marketplace::app.seller.transactions.view.commission') | @lang('marketplace::app.seller.transactions.view.seller-total') |
|---|---|---|---|---|---|
| {{ $item->item->name }} | {{ core()->formatBasePrice($item->item->base_price) }} | @if (in_array($item->item->type, ['downloadable', 'virtual'])) {{ 'N/A' }} @else {{ $item->item->qty_shipped}} @endif |
{{ core()->formatBasePrice($item->item->base_total) }}
|
{{ core()->formatBasePrice($item->base_commission) }}
|
{{ core()->formatBasePrice($item->base_seller_total) }}
|
@lang('marketplace::app.seller.transactions.view.subtotal')
-
{{ core()->formatBasePrice($transaction->order->base_sub_total) }}
@lang('marketplace::app.seller.transactions.view.shipping-handling')
-
{{ core()->formatBasePrice(0) }}
@lang('marketplace::app.seller.transactions.view.tax')
-
{{ core()->formatBasePrice($transaction->order->base_tax_amount) }}
@lang('marketplace::app.seller.transactions.view.commission')
-
{{ core()->formatBasePrice($transaction->order->base_commission) }}
@lang('marketplace::app.seller.transactions.view.seller-total')
-
{{ core()->formatBasePrice($transaction->order->base_seller_total) }}