@extends('layouts.app') @section('title', 'CRM — Leads') @push('styles') @endpush @section('content')
| Lead Name | Company | Source | Phone | Assigned To | Est. Value | Status | Priority | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ $lead->lead_name }} | {{ $lead->company_name ?? '—' }} | {{ ucfirst(str_replace('_',' ',$lead->source)) }} | {{ $lead->phone ?? '—' }} | {{ $lead->assignedTo->name ?? 'Unassigned' }} | {{ $lead->estimated_value > 0 ? '৳'.number_format($lead->estimated_value,0) : '—' }} | @php $cls=['new'=>'info','contacted'=>'primary','qualified'=>'warning','unqualified'=>'secondary','converted'=>'success','lost'=>'danger']; @endphp {{ ucfirst($lead->status) }} | @php $pcls=['low'=>'secondary','medium'=>'warning','high'=>'danger']; @endphp {{ ucfirst($lead->priority) }} | |
| No leads found. Add your first lead | ||||||||