Initial commit

This commit is contained in:
2025-11-20 23:21:05 +08:00
commit 13bc6db529
378 changed files with 54527 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
<x-mail::message>
# Issue Due Soon - Reminder
An issue assigned to you is due soon and requires your 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 Remaining:** {{ $daysRemaining }} {{ $daysRemaining === 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
</x-mail::button>
Please ensure this issue is completed before the due date.
Thanks,<br>
{{ config('app.name') }}
</x-mail::message>