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

Lead Management

Product visitors যারা order করেননি — follow-up করুন

{{ $counts['total'] }}
Total Leads
{{ $counts['new'] }}
New Leads
{{ $counts['contacted'] }}
Contacted
{{ $counts['converted'] }}
Converted
Reset
@forelse($leads as $lead) @empty @endforelse
#ContactSource Product StatusNoteDateActions
{{ $lead->id }}
{{ $lead->name ?? 'Unknown' }}
{{ $lead->phone }} @if($lead->email)
{{ $lead->email }}
@endif
{{ $lead->source_product ?? '—' }}
@if($lead->utm_source) {{ $lead->utm_source }} @endif
{{ $lead->status_label }} {{ Str::limit($lead->admin_note, 40) ?: '—' }} {{ $lead->created_at->diffForHumans() }}
@csrf @method('DELETE')
No leads yet. Visitors who fill the callback form will appear here.
@if($leads->hasPages()) @endif
@endsection