Blog Post: {{ $comment->blog->title }}
Comment Date: {{ $comment->created_at->format('M d, Y H:i:s') }}
Comment Type: @if($comment->parent_id) Reply to Comment @else New Comment @endif
Commenter Details:
| Name: | {{ $comment->user->name ?? 'Guest User' }} |
| Email: | {{ $comment->user->email ?? 'N/A' }} |
| Replying to: | Comment #{{ $comment->parent_id }} |
Comment Content:
"{{ $comment->comment }}"
Blog Post Summary:
Title: {{ $comment->blog->title }}
Author: {{ $comment->blog->author->name ?? 'Unknown' }}
Published: {{ $comment->blog->created_at->format('M d, Y') }}
Total Comments: {{ $comment->blog->comments->count() }}
This is an automated notification from {{ config('app.name') }}