{{ session('success') }}
{{ session('error') }}
Total Leads
{{ $stats['total'] ?? 0 }}
Contacted
{{ $stats['contacted'] ?? 0 }}
Not Contacted
{{ $stats['not_contacted'] ?? 0 }}
Get started by adding your first lead using the form above.
| Name | Phone | Priority | Status | Last Contacted | Remark 1 | Remark 2 | Actions | |
|---|---|---|---|---|---|---|---|---|
| {{ $lead->name }} | {{-- Phone --}}{{ $lead->phone ?? '—' }} | {{-- Email --}}{{ $lead->email ?? '—' }} | {{-- Priority Badge --}}@switch($lead->priority) @case('urgent') Urgent @break @case('high') High @break @case('medium') Medium @break @default Low @endswitch | {{-- Status Badge --}}@if($lead->status === 'contacted') Contacted @else Not Contacted @endif | {{-- Last Contacted At --}}{{ $lead->last_contacted_at ? \Carbon\Carbon::parse($lead->last_contacted_at)->format('M d, Y h:i A') : '—' }} | {{-- Remark 1 --}}{{ $lead->remark_1 ?? '—' }} | {{-- Remark 2 --}}{{ $lead->remark_2 ?? '—' }} | {{-- Actions --}}|