@extends('admin.layout') @section('content')

{{ translate('Commission history') }}

@if (Session::get('tenant_subscribtion_data')['sellers']['belongs_to_subscribtion'] == true && Session::get('tenant_controle_modules')['sellers'] == 1)
@include('admin.Seller.nav', ['seller_id' => $seller_id , 'active' => 'commission'])
@foreach ($commission_history as $key => $history) @endforeach
# {{ translate('Order code') }} {{ translate('Admin commission') }} {{ translate('Seller earning') }} {{ translate('Date') }}
{{ $key + 1 + ($commission_history->currentPage() - 1) * $commission_history->perPage() }} {{ $history->order->code }} {{ single_price($history->admin_commission) }} {{ currency_sympol()['symbol'] }} {{ single_price($history->seller_earning) }} {{ currency_sympol()['symbol'] }} {{ $history->created_at }}
{{ $commission_history->links() }}
@else

{{ translate('You need to upgrade to use this feature.') }}

{{ translate('Please Upgrade to use this feature.') }}


{{ translate('Upgrade now') }}
@endif
@endsection @section('script') @endsection