{{ config('app.name') }} - External Dashboard
Total Team
{{ $projectStats['total_team'] ?? 0 }}
Progress
{{ $projectStats['progress_percentage'] ?? 0 }}%
Remaining Days
{{ $projectStats['remaining_days'] ?? 'N/A' }}
Total Tasks
{{ $projectStats['total_tickets'] ?? 0 }}
All tasks in this project (ordered by creation date)
| Code | Task Name | Due Date | Status |
|---|---|---|---|
| {{ $ticket->uuid }} |
{{ $ticket->name }}
@if ($ticket->description)
{{ Str::limit($ticket->description, 100) }}
@endif
|
@if ($ticket->due_date)
{{ \Carbon\Carbon::parse($ticket->due_date)->format('M d, Y') }}
@if (\Carbon\Carbon::parse($ticket->due_date)->isPast())
Overdue
@endif
@else
No due date
@endif
|
{{ $ticket->status->name ?? 'Unknown' }} |
|
No tasks found Try adjusting your search or filter criteria. |
|||
{{ $ticket->uuid }}
{{ Str::limit($ticket->description, 120) }}
@endifNo tasks found
Try adjusting your search or filter criteria.