@if($notes->count() > 0)
    @foreach($notes as $index => $note)
  • @if(!$loop->last) @endif
    {{ $note->user?->name ?? 'Unknown User' }} {{ $note->created_at->format('M d, Y') }} at {{ $note->created_at->format('g:i A') }} ({{ $note->created_at->diffForHumans() }})
    {{ ($this->deleteAction)(['noteId' => $note->id]) }}
    {{ $note->content }}
  • @endforeach
@else

No notes yet

Add notes to track history and communication for this citizen.

@endif