Total Row: {{ $list->count() }}
Total Amount: {{ number_format($list->sum('total_amount'), 2) }} TK
@can('show_commission_reseller_balance_log')
Total Commission (Fixed): {{ number_format($list->sum('total_commission_amount'), 2) }} TK
@endcan @can('show_commission_percentage_reseller_balance_log')
Total Commission (Calculated): {{ number_format($list->sum('calculated_commission_amount'), 2) }} TK
@endcan
@can('show_commission_reseller_balance_log') @endcan @can('show_commission_percentage_reseller_balance_log') @endcan @php $total = 0; $totalCommission = 0; $totalCalculatedCommission = 0; @endphp @forelse ($list as $item) @can('show_commission_reseller_balance_log') @endcan @can('show_commission_percentage_reseller_balance_log') @endcan @empty @endforelse @can('show_commission_reseller_balance_log') @endcan @can('show_commission_percentage_reseller_balance_log') @endcan
# Manager Id Reseller Name Account No Account Name Bank Name Branch Name Routing No Total Amount Commission in (%)Total Commission (Fixed)Total Commission (Calculated)
{{ $loop->iteration }} {{ $item->reseller->id ?? 'N/A' }} {{ $item->reseller->name ?? 'N/A' }} {{ $item->reseller->bank_account_no ?? 'N/A' }} {{ $item->reseller->account_name ?? 'N/A' }} {{ $item->reseller->bank_name ?? 'N/A' }} {{ $item->reseller->branch_name ?? 'N/A' }} {{ $item->reseller->routing_number ?? 'N/A' }} @php $total += $item->total_amount @endphp {{ number_format($item->total_amount, 2) }} {{ $item->reseller_commission_percentage ?? 'N/A' }}% @php $totalCommission += $item->total_commission_amount @endphp {{ number_format($item->total_commission_amount, 2) }} @php $totalCalculatedCommission += $item->calculated_commission_amount @endphp {{ number_format($item->calculated_commission_amount, 2) }}
Total: {{ number_format($total, 2) }} {{ number_format($totalCommission, 2) }}{{ number_format($totalCalculatedCommission, 2) }}