💬 New Comment on Case

Hello,

A new comment has been posted on Case #{{ $vetCase->id }}.

Case ID: #{{ $vetCase->id }}

Pet Name: {{ $vetCase->pet_name }}

Species: {{ $vetCase->pet_species }}

Owner: {{ $vetCase->owner_name ?? 'Not Found'}}

Status: {{ ucfirst($vetCase->status) }}

From: {{ $commenter->name }} @if($comment->type === 'admin_reply') ADMIN @else USER @endif
{{ $comment->content }}
@if($comment->images->count() > 0)

📎 {{ $comment->images->count() }} {{ $comment->images->count() === 1 ? 'image' : 'images' }} attached:

@foreach($comment->images as $image) {{ $image->caption ?? 'Comment image' }} @if($image->caption)

{{ $image->caption }}

@endif @endforeach
@endif
@if($comment->parent_comment_id)

This is a reply to a previous comment.

@endif