@extends('layouts.dashboard') @section('header')

{{ __('Follow-Ups') }}

@endsection @section('content')

My Follow-Ups

Create Follow-Up
@if($followUps->isEmpty())

No follow-ups found

Follow-ups you create will appear here.

@else
@foreach($followUps as $followUp)
{{ $followUp->user->name }} on {{ class_basename($followUp->followable_type) }} #{{ $followUp->followable_id }}
View Edit
@csrf @method('DELETE')
{{ $followUp->description }}
Follow-up Date: {{ $followUp->follow_up_date ? $followUp->follow_up_date->format('M d, Y') : 'N/A' }}
@endforeach
{{ $followUps->links() }}
@endif
@endsection