34 lines
938 B
PHP
34 lines
938 B
PHP
<x-mail::message>
|
|
# Issue Assigned to You
|
|
|
|
You have been assigned to work on an issue.
|
|
|
|
**Issue Details:**
|
|
- **Issue Number:** {{ $issue->issue_number }}
|
|
- **Title:** {{ $issue->title }}
|
|
- **Priority:** {{ ucfirst($issue->priority) }}
|
|
- **Type:** {{ ucfirst(str_replace('_', ' ', $issue->issue_type)) }}
|
|
- **Status:** {{ ucfirst(str_replace('_', ' ', $issue->status)) }}
|
|
@if($issue->due_date)
|
|
- **Due Date:** {{ $issue->due_date->format('Y-m-d') }} ({{ $issue->due_date->diffForHumans() }})
|
|
@endif
|
|
@if($issue->estimated_hours)
|
|
- **Estimated Hours:** {{ $issue->estimated_hours }}
|
|
@endif
|
|
- **Assigned by:** {{ $issue->createdBy->name }}
|
|
|
|
@if($issue->description)
|
|
**Description:**
|
|
{{ $issue->description }}
|
|
@endif
|
|
|
|
<x-mail::button :url="route('admin.issues.show', $issue)">
|
|
View Issue
|
|
</x-mail::button>
|
|
|
|
Please review this issue and start working on it at your earliest convenience.
|
|
|
|
Thanks,<br>
|
|
{{ config('app.name') }}
|
|
</x-mail::message>
|