Initial commit
This commit is contained in:
29
resources/views/emails/issues/status-changed.blade.php
Normal file
29
resources/views/emails/issues/status-changed.blade.php
Normal file
@@ -0,0 +1,29 @@
|
||||
<x-mail::message>
|
||||
# Issue Status Changed
|
||||
|
||||
The status of an issue you're watching has been updated.
|
||||
|
||||
**Issue Details:**
|
||||
- **Issue Number:** {{ $issue->issue_number }}
|
||||
- **Title:** {{ $issue->title }}
|
||||
- **Previous Status:** {{ ucfirst(str_replace('_', ' ', $oldStatus)) }}
|
||||
- **New Status:** {{ ucfirst(str_replace('_', ' ', $newStatus)) }}
|
||||
- **Priority:** {{ ucfirst($issue->priority) }}
|
||||
@if($issue->assignedTo)
|
||||
- **Assigned To:** {{ $issue->assignedTo->name }}
|
||||
@endif
|
||||
@if($issue->due_date)
|
||||
- **Due Date:** {{ $issue->due_date->format('Y-m-d') }}
|
||||
@endif
|
||||
|
||||
**Current Progress:** {{ $issue->progress_percentage }}%
|
||||
|
||||
<x-mail::button :url="route('admin.issues.show', $issue)">
|
||||
View Issue
|
||||
</x-mail::button>
|
||||
|
||||
Stay updated on the progress of this issue.
|
||||
|
||||
Thanks,<br>
|
||||
{{ config('app.name') }}
|
||||
</x-mail::message>
|
||||
Reference in New Issue
Block a user