@extends('layouts.admin', ['title' => ($pageTitle ?? 'All Leads') . ' - HIPL CRM']) @php $statusClasses = [ 'new' => 'bg-primary-subtle text-primary', 'contacted' => 'bg-info-subtle text-info-emphasis', 'qualified' => 'bg-warning-subtle text-warning-emphasis', 'closed_won' => 'bg-success-subtle text-success-emphasis', 'closed_lost' => 'bg-danger-subtle text-danger-emphasis', ]; @endphp @section('content')
| # | Website | Name | Phone | Details | Status | Form | Created | |
|---|---|---|---|---|---|---|---|---|
| {{ $lead->id }} | {{ $lead->website->name ?? '-' }} | {{ $lead->name ?? '-' }} | {{ $lead->email ?? '-' }} | {{ $lead->phone ?? '-' }} |
{{ $statuses[$lead->status] ?? ucfirst(str_replace('_', ' ', $lead->status)) }}
|
{{ $lead->source_form ?? '-' }} | {{ $lead->created_at?->format('Y-m-d H:i') }} | |
| No leads found. | ||||||||