36 lines
1.0 KiB
PHP
36 lines
1.0 KiB
PHP
<x-mail::message>
|
|
# Issue Overdue - Urgent Attention Required
|
|
|
|
An issue assigned to you is now overdue and requires immediate attention.
|
|
|
|
**Issue Details:**
|
|
- **Issue Number:** {{ $issue->issue_number }}
|
|
- **Title:** {{ $issue->title }}
|
|
- **Priority:** {{ ucfirst($issue->priority) }}
|
|
- **Status:** {{ ucfirst(str_replace('_', ' ', $issue->status)) }}
|
|
- **Due Date:** {{ $issue->due_date->format('Y-m-d') }}
|
|
- **Days Overdue:** {{ $daysOverdue }} {{ $daysOverdue === 1 ? 'day' : 'days' }}
|
|
|
|
**Progress:** {{ $issue->progress_percentage }}%
|
|
|
|
@if($issue->estimated_hours)
|
|
**Time Tracking:**
|
|
- Estimated: {{ $issue->estimated_hours }} hours
|
|
- Actual: {{ $issue->actual_hours }} hours
|
|
@endif
|
|
|
|
@if($issue->description)
|
|
**Description:**
|
|
{{ Str::limit($issue->description, 200) }}
|
|
@endif
|
|
|
|
<x-mail::button :url="route('admin.issues.show', $issue)">
|
|
View Issue Immediately
|
|
</x-mail::button>
|
|
|
|
This issue is overdue. Please prioritize completing it or update the due date if needed.
|
|
|
|
Thanks,<br>
|
|
{{ config('app.name') }}
|
|
</x-mail::message>
|