@lang('marketplace::app.seller.transactions.view.transaction-id', ['transaction_id' => $transaction->transaction_id]) @section('breadcrumbs') @endSection {!! view_render_event('bagisto.seller.transaction.view.before', ['transaction' => $transaction]) !!}

@lang('marketplace::app.seller.transactions.view.transaction-id', ['transaction_id' => $transaction->transaction_id])

@lang('marketplace::app.seller.transactions.view.payment-method', ['method' => $transaction->method]) @lang('marketplace::app.seller.transactions.view.created-on', ['date' => core()->formatDate($transaction->created_at, 'd M Y')])
{!! view_render_event('bagisto.seller.transaction.view.print_button.before', ['transaction' => $transaction]) !!} @if (seller()->hasPermission('transactions.print')) @lang('marketplace::app.seller.transactions.view.print') @endif {!! view_render_event('bagisto.seller.transaction.view.print_button.after', ['transaction' => $transaction]) !!}
{!! view_render_event('bagisto.seller.transaction.view.list.before', ['transaction' => $transaction]) !!}
{!! view_render_event('marketplace.seller.transaction.list.heading_row.before') !!} {!! view_render_event('marketplace.seller.transaction.list.heading_row.after') !!} @foreach ($transaction->order->items as $item) {!! view_render_event('marketplace.seller.transaction.list.record_row.before', ['item' => $item]) !!} {!! view_render_event('marketplace.seller.transaction.list.record_row.after', ['item' => $item]) !!} @endforeach
@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) }}
{!! view_render_event('bagisto.seller.transaction.view.list.after', ['transaction' => $transaction]) !!}

@lang('marketplace::app.seller.transactions.view.subtotal')

-

{{ core()->formatBasePrice($transaction->order->base_sub_total) }}

@if ($transaction->order->order->haveStockableItems())

@lang('marketplace::app.seller.transactions.view.shipping-handling')

-

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

@endif

@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) }}

{!! view_render_event('bagisto.seller.transaction.view.after', ['transaction' => $transaction]) !!}