{{-- ══════════════════════════════════════════════════════════════ Follow-Ups section — include in leads/edit.blade.php Place OUTSIDE your main lead
tag, below appointments. @include('leads.partials._followups_section') Requires: $lead — with followUps eager-loaded ══════════════════════════════════════════════════════════════ --}}
Follow-Ups
@if ($lead->followUps->isEmpty())
No follow-ups yet. Click Add Follow-Up to add one.
@else
@foreach ($lead->followUps as $i => $fu) @endforeach
# Type Date Time Feedback Action
{{ $i + 1 }} @php $badge = match($fu->follow_up_type) { 'Online Meeting' => 'bg-info text-dark', 'Offline Meeting' => 'bg-secondary', default => 'bg-primary', }; @endphp {{ $fu->follow_up_type }} {{ $fu->follow_up_date ? $fu->follow_up_date->format('d-m-Y') : '—' }} {{ $fu->follow_up_time ? \Carbon\Carbon::createFromFormat('H:i:s', $fu->follow_up_time)->format('h:i A') : '—' }} {{ Str::limit($fu->feedback, 60) ?? '—' }} @csrf @method('DELETE')
@endif
{{-- ── Add Follow-Up Modal ────────────────────────────────────── --}}