@extends('adminlte::page') @section('title', 'Task Reports') @section('content_header')
Total Tasks
All timePending Tasks
{{ $taskCounts->total > 0 ? round(($taskCounts->pending / $taskCounts->total) * 100, 1) : 0 }}% of totalCompleted Tasks
{{ $taskCounts->total > 0 ? round(($taskCounts->completed / $taskCounts->total) * 100, 1) : 0 }}% of totalOverdue Tasks
Past due date| User | Total Tasks | Completed | Pending | Overdue | Completion Rate | Avg Days to Complete |
|---|---|---|---|---|---|---|
| {{ $user->name }} | {{ $user->total_tasks }} | {{ $user->completed_tasks }} | {{ $user->pending_tasks }} | @if($user->overdue_tasks > 0) {{ $user->overdue_tasks }} @else 0 @endif | @php $rateColor = $completionRate >= 80 ? 'success' : ($completionRate >= 60 ? 'warning' : 'danger'); @endphp {{ number_format($completionRate, 1) }}% | {{ $user->avg_completion_days ? number_format($user->avg_completion_days, 1) : 'N/A' }} |
No task data available.
@endifNo recent task activity.
@endif