{{-- Header with Gradient --}}

Agency Outreach

Track and manage agency partnership leads

Add New Lead
{{-- Statistics Cards with Gradient --}}
{{-- Total Leads --}}

Total Leads

{{ number_format($totalLeads) }}

{{-- New Leads --}}

New Leads

{{ number_format($newLeads) }}

{{-- Contacted --}}

Contacted

{{ number_format($contacted) }}

{{-- Interested --}}

Interested

{{ number_format($interested) }}

{{-- Onboarded --}}

Onboarded

{{ number_format($onboarded) }}

{{ $conversionRate }}% conversion

{{-- Follow-ups Due --}}

Follow-ups Due

{{ number_format($pendingFollowUps) }}

+ {{ $upcomingFollowUps }} upcoming

{{-- Filters with Modern Design --}}
{{-- Search --}}
{{-- Period --}}
{{-- Status --}}
{{-- Assigned Agent --}}
{{-- Filter Button --}}
{{-- Agency List with Modern Table --}}
@forelse($agencies as $agency) @empty @endforelse
Agency Contact Status Priority Assigned To Follow-up Added By Actions
{{ substr($agency->agency_name, 0, 1) }}
{{ $agency->agency_name }}
@if($agency->iata_code)
IATA: {{ $agency->iata_code }}
@endif
{{ $agency->contact_person ?? 'N/A' }}
{{ $agency->phone }}
{{ $agency->status_label }} {{ ucfirst($agency->priority) }}
{{ $agency->assignedAgent->name ?? 'Unassigned' }}
@if($agency->follow_up_date)
{{ $agency->follow_up_date->format('M d, Y') }}
@else Not set @endif
{{ $agency->createdByAgent->name }}
View Edit

No agency leads found

Add your first lead to get started!

{{-- Pagination --}}
{{ $agencies->links() }}
{{-- Top Agents Performance --}} @if($topAgents->count() > 0)

Top Performing Agents

@foreach($topAgents as $index => $agent)
@if($index === 0)
🏆 #1
@endif
{{ substr($agent->name, 0, 1) }}

{{ $agent->name }}

{{ $agent->total_leads }} leads assigned

{{ $agent->onboarded_count }}

Onboarded

{{ $agent->conversion_rate }}%

Success Rate

@endforeach
@endif