@extends('layouts.admin') @section('title', 'Lead Management') @section('content')

Lead Management

Add New Lead
Total Leads
{{ $leads->total() }}
Converted
{{ \App\Models\Lead::where('status', 'converted')->count() }}
In Progress
{{ \App\Models\Lead::whereIn('status', ['contacted', 'qualified'])->count() }}
Lost
{{ \App\Models\Lead::where('status', 'lost')->count() }}
@forelse($leads as $lead) @empty @endforelse
Name Company Territory Status Value Actions
{{ $lead->name }} {{ $lead->company }} {{ $lead->territory->name ?? 'N/A' }} {{ ucfirst($lead->status) }} PKR {{ number_format($lead->value ?? 0) }} Edit
No leads found.
{{ $leads->links() }}
@endsection