@extends('staff.layout') @section('content')

📞 Today's Completed Call

@forelse ($followups as $followup) @empty @endforelse
# Lead ID Date Follow-up Date Follow-up Note Status
{{ $loop->iteration }} {{ $followup->lead_id }} {{ \Carbon\Carbon::parse($followup->created_at)->format('d-m-Y h:i A') }} {{ \Carbon\Carbon::parse($followup->date . ' ' . $followup->time)->format('d-m-Y h:i A') }} {{ $followup->notes }} {{ $followup->status }}
No completed follow-ups for today.
@endsection