@extends('layouts.contentNavbarLayout') @section('content')

Pipeline Management

@if(session('success'))
{{ session('success') }}
@endif
@php $statuses = [ 'pending' => '🕒 Pending', 'in_progress' => '⚙️ In Progress', 'completed' => '✅ Completed', ]; @endphp @foreach($statuses as $statusKey => $statusLabel)
{{ $statusLabel }}
@foreach($pipelines->where('status', $statusKey) as $pipeline)
{{ $pipeline->campaign_name }}
Lead: {{ $pipeline->lead_source ?? 'N/A' }}
Assigned: {{ $pipeline->assignedTo->name ?? 'Unassigned' }}
Edit
@csrf @method('DELETE') {{-- --}} Delete
Edit Pipeline
@csrf @method('PUT')
@endforeach
@endforeach
@endsection