{{ __('Manage Agents') }}

View Commissions
Total Agents: {{ $totalAgents }}

Agent Upload Tool

Use this tool to bulk upload agents from a CSV file. The CSV should include email, name, and tier at minimum.

Edit {{ ucfirst($item->status) }} {{ $item->tier }} {{ $item->commission_rate }}% {{ $item->created_at->format('M d, Y') }}

Agent Tiers

@foreach(\App\Models\Agent::getCommissionTiers() as $tier => $rate)
{{ $tier }} {{ $rate }}%
@endforeach

Status Summary

Approved {{ $approvedAgents }}
Pending {{ $pendingAgents }}
Rejected {{ $rejectedAgents }}

Tier Distribution

@foreach(\App\Models\Agent::getCommissionTiers() as $tier => $rate)
{{ $tier }} {{ $tierCounts[$tier] }}
@endforeach