{{-- Filters --}}
@if(auth()->user()->role === 'super_admin' || auth()->user()->user_type === 'super_admin')
@endif
{{-- Main Stats Cards --}}
{{-- Total Calls --}}

Total Calls

{{ $this->getTotalCalls() }}

{{-- Picked Calls --}}

✅ Picked

{{ $this->getPickedCalls() }}

{{-- Candidates Created --}}

Candidates Created

{{ $this->getCandidatesCreated() }}

{{-- Conversion Rate --}}

Conversion Rate

{{ $this->getConversionRate() }}%

{{-- Call Status Breakdown Cards --}}
{{-- Picked --}}

✅ Picked

{{ $this->getPickedCalls() }}

{{-- Missed --}}

📵 Missed

{{ $this->getMissedCalls() }}

{{-- Callback --}}

📞 Callback

{{ $this->getCallbackCalls() }}

{{-- Declined --}}

❌ Declined

{{ $this->getDeclinedCalls() }}

{{-- Invalid --}}

⚠️ Invalid

{{ $this->getInvalidCalls() }}

{{-- Admin Rankings --}} @if(auth()->user()->role === 'super_admin' || auth()->user()->user_type === 'super_admin')

🏆 Top Performing Admins

@foreach($this->getAdminRankings() as $index => $ranking) @endforeach
Rank Admin Name Total Calls Picked Candidates Success Rate
@if($index === 0) 🥇 @elseif($index === 1) 🥈 @elseif($index === 2) 🥉 @else {{ $index + 1 }} @endif {{ $ranking['name'] }} {{ $ranking['total_calls'] }} {{ $ranking['picked_calls'] }} {{ $ranking['candidates_created'] }} @php $rate = $ranking['total_calls'] > 0 ? round(($ranking['candidates_created'] / $ranking['total_calls']) * 100, 1) : 0; @endphp {{ $rate }}%
@endif {{-- Tips --}}

💡 Productivity Tips

  • Record call status immediately to track your productivity accurately
  • For declined/unreachable candidates, schedule callbacks for better timing
  • Aim for a conversion rate of 60%+ (candidates created per calls made)
  • Review call notes to improve your approach with candidates