@extends('client.layouts.dashboard') @section('title', 'Follow-up Tasks') @section('styles') @endsection @section('content') {{-- Quick Counters --}} @php $overdueCount = \App\Models\Reminder::where('client_id', $client->id)->overdue()->count(); $todayCount = \App\Models\Reminder::where('client_id', $client->id)->dueToday()->count(); $upcomingCount = \App\Models\Reminder::where('client_id', $client->id)->upcoming()->count(); $completedCount = \App\Models\Reminder::where('client_id', $client->id)->where('is_completed', true)->count(); @endphp
{{ $reminder->note }}
@endifTry clearing filters or schedule new reminders from the Leads pipeline.