@extends('admin.layouts.app') @section('title', 'CRM - Leads Management') @section('content')
| 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 }}
|
@if ($lead->next_follow_up)
{{ $lead->next_follow_up->format('M d') }}
@else
Not set
@endif
{{ $lead->next_follow_up->format('h:i A') }}
|
|||
|
No leads found Add Your First Lead |
|||||||