Team Leader Dashboard

Manage and track assigned issues efficiently

{{ $issues->count() }} Total Issues
@if(session('success'))

Success!

{{ session('success') }}

@endif @if(session('error'))

Error!

{{ session('error') }}

@endif
@php $pendingCount = $issues->where('status', 'pending')->count(); $inProgressCount = $issues->where('status', 'in_progress')->count(); $resolvedCount = $issues->where('status', 'resolved')->count(); $unresolvedCount = $issues->where('status', 'unresolved')->count(); $highPriorityCount = $issues->where('priority', 'high')->count(); $totalIssues = $issues->count(); @endphp

{{ $pendingCount }}

Pending

Awaiting action

{{ $inProgressCount }}

In Progress

Being worked on

{{ $resolvedCount }}

Resolved

Completed

{{ $highPriorityCount }}

High Priority

Needs attention

Assigned Issues

@foreach($issues as $issue) @endforeach
# Issue Details Reporter Status Priority Expert Actions
{{ $loop->iteration }}

{{ $issue->title }}

{{ Str::limit($issue->description, 60) }}

@if($issue->screenshot) Has screenshot @endif
{{ ucfirst($issue->status) }} {{ ucfirst($issue->priority ?? 'Unset') }} @if($issue->expert)
{{ $issue->expert->name }}
@else Not Assigned @endif
@if($issues->isEmpty())

No Issues Assigned

There are currently no issues assigned to your team.

@endif
@foreach($issues as $issue) @endforeach