@extends('layouts.app') @section('title', 'Leads') @section('breadcrumb')Leads@endsection @section('content')

Leads

Manage and track all incoming leads

New Lead
@foreach([ ['label' => 'All', 'key' => 'all', 'color' => 'gray'], ['label' => 'New', 'key' => 'new', 'color' => 'blue'], ['label' => 'Consult Booked', 'key' => 'consult_booked', 'color' => 'purple'], ['label' => 'On Hold', 'key' => 'on_hold', 'color' => 'yellow'], ['label' => 'Lost', 'key' => 'lost', 'color' => 'red'], ['label' => 'Sold', 'key' => 'sold', 'color' => 'green'], ['label' => 'Converted', 'key' => 'converted', 'color' => 'teal'], ] as $stat)
{{ $stats[$stat['key']] }}
{{ $stat['label'] }}
@endforeach
Clear
@forelse($leads as $lead) @empty @endforelse
Lead Contact Source Project Status Priority Date Actions
{{ $lead->lead_number }}
{{ $lead->enquiry_date?->format('d M Y') }}
{{ $lead->contact?->initials ?? '??' }}
{{ $lead->contact?->full_name ?? '—' }}
{{ $lead->contact?->email }}
{{ $lead->source ?? '—' }} {{ $lead->project_type ? ucfirst($lead->project_type) : '—' }} {{ $lead->statusLabel() }} {{ ucfirst($lead->priority) }} {{ $lead->enquiry_date?->diffForHumans() ?? '—' }}
No leads found. Create your first lead
@if($leads->hasPages())
{{ $leads->links() }}
@endif
@endsection