@extends('layouts.master') @section('title', 'Assignment Reports - Prolex Law Firm') @section('content')
Track lawyer productivity and assignment completion rates over time.
Current status distribution of all assignments and progress tracking.
Assignments approaching deadlines and overdue items requiring attention.
Detailed performance analysis including completion times and efficiency metrics.
| ID | Title | Lawyer | Client | Case | Priority | Status | Due Date | Progress | Creator | Actions |
|---|---|---|---|---|---|---|---|---|---|---|
| {{ $assignment->id }} | {{ $assignment->assignment_title }} | {{ $assignment->lawyer ? $assignment->lawyer->first_name . ' ' . $assignment->lawyer->last_name : 'N/A' }} | {{ $assignment->client ? $assignment->client->client_name : 'N/A' }} | {{ $assignment->legalCase ? $assignment->legalCase->case_title : 'N/A' }} | {{ ucfirst($assignment->priority) }} | {{ ucfirst(str_replace('_', ' ', $assignment->status)) }} | {{ $assignment->due_datetime ? \Carbon\Carbon::parse($assignment->due_datetime)->format('M d, Y H:i') : 'N/A' }} | {{ $assignment->creator ? $assignment->creator->name : 'N/A' }} |