{{ translate('Commission History') }}
@if(Auth::user()->user_type != 'seller')
@endif
@foreach ($commission_history as $key => $history) @endforeach
# {{ translate('Order Code') }} {{ translate('Admin Commission') }} {{ translate('Seller Earning') }} {{ translate('Created At') }}
{{ ($key+1) }} @if(isset($history->order)) {{ $history->order->code }} @else translate('Order Deleted') @endif {{ $history->admin_commission }} {{ $history->seller_earning }} {{ $history->created_at }}
{{ $commission_history->links() }}