@extends('admin.layouts.app') @section('title', 'CRM - Leads Management') @section('content')

CRM - Leads

Manage and track all your leads

Dashboard Export Add Lead
{{ $stats['total'] }}
Total Leads
{{ $stats['new'] }}
New Leads
{{ $stats['hot'] }}
Hot Leads 🔥
{{ $stats['follow_ups_today'] }}
Today's Follow-ups
{{ $stats['pending_follow_ups'] }}
Pending Follow-ups
{{ $stats['converted_this_month'] }}
Converted (Month)
All Leads New 🔥 Hot Qualified Site Visits Negotiation Converted
@if (request()->hasAny(['search', 'source', 'lead_type', 'assigned_to', 'status', 'priority'])) Clear @endif
@forelse($leads as $lead) @empty @endforelse
Lead Contact Type / Source Priority Status Assigned Follow-up Actions
{{ strtoupper(substr($lead->name, 0, 2)) }}
{{ $lead->name }}
Score: {{ $lead->score }} @if ($lead->budget_range) • {{ $lead->budget_range }} @endif
{{ $lead->phone }} @if ($lead->email)
{{ $lead->email }}
@endif
{{ $lead->lead_type_label }}
{{ $lead->source_label }}
@if ($lead->assignedTo)
{{ substr($lead->assignedTo->name, 0, 1) }}
{{ $lead->assignedTo->name }}
@else Unassigned @endif
@if ($lead->next_follow_up)
{{ $lead->next_follow_up->format('M d') }}
{{ $lead->next_follow_up->format('h:i A') }}
@else Not set @endif

No leads found

Add Your First Lead
@if ($leads->hasPages())
{{ $leads->links() }}
@endif @endsection @push('scripts') @endpush