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

{{ __('Follow-Up Details') }}

@endsection @section('content')

Follow-Up Information

Detailed information about the follow-up including schedule and related entity.

Follow-Up Details

Description: {{ $followUp->description }}
Follow-Up Date: {{ $followUp->follow_up_date ? \Carbon\Carbon::parse($followUp->follow_up_date)->format('M d, Y') : 'N/A' }}
Assigned To: {{ $followUp->user->name }}
Related To: {{ class_basename($followUp->followable_type) }} #{{ $followUp->followable_id }}
Created At: {{ $followUp->created_at->format('M d, Y H:i') }}
Updated At: {{ $followUp->updated_at->format('M d, Y H:i') }}
@endsection