@extends('layouts.admin') @section('title', 'Lead Management') @section('content')

Lead Management

Track leads from prospect to active merchant.

@php $pipelineStages = ['Prospect', 'Demo', 'Onboard', 'Active']; @endphp @foreach ($pipelineStages as $stage)

{{ $stage }}

@foreach ($leads->where('status', $stage) as $lead)
{{ $lead->contact_person }}

{{ $lead->company_name }}

{{ $lead->contact_person }}

PKR {{ number_format($lead->value ?? 0) }}

Edit
@csrf @method('DELETE')
@endforeach @if ($leads->where('status', $stage)->count() === 0)
No leads in this stage.
@endif
@endforeach
@endsection