Files
usher-manage-stack/resources/views/emails/issues/commented.blade.php
2025-11-20 23:21:05 +08:00

31 lines
763 B
PHP

<x-mail::message>
# New Comment on Issue
A new comment has been added to an issue you're watching.
**Issue Details:**
- **Issue Number:** {{ $issue->issue_number }}
- **Title:** {{ $issue->title }}
- **Status:** {{ ucfirst(str_replace('_', ' ', $issue->status)) }}
- **Priority:** {{ ucfirst($issue->priority) }}
**Comment by:** {{ $comment->user->name }}
**Posted at:** {{ $comment->created_at->format('Y-m-d H:i') }}
@if(!$comment->is_internal)
**Comment:**
{{ $comment->comment_text }}
@else
*An internal comment has been added to this issue.*
@endif
<x-mail::button :url="route('admin.issues.show', $issue)">
View Issue & Comment
</x-mail::button>
Stay engaged with the discussion on this issue.
Thanks,<br>
{{ config('app.name') }}
</x-mail::message>