Initial commit
This commit is contained in:
30
resources/views/emails/issues/commented.blade.php
Normal file
30
resources/views/emails/issues/commented.blade.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user