@extends('layouts.app') @section('title', 'Employee Task Progress Report') @section('breadcrumb') Reports / Employee Task Progress @endsection @section('content')
Job-wise task completion status and percentage per factory employee
| Job | Task | Status | Allocated | Logged | Progress | % Done |
|---|---|---|---|---|---|---|
| {{ $row['job_number'] }} | {{ $row['task_name'] }} | @php $badge = match($row['task_status']) { 'completed' => 'badge-green', 'in_progress' => 'badge-blue', 'paused' => 'badge-yellow', default => 'badge-gray', }; @endphp {{ ucfirst(str_replace('_',' ', $row['task_status'])) }} | {{ $row['allocated_hours'] ? number_format($row['allocated_hours'],1).'h' : '—' }} | {{ number_format($row['logged_hours'],2) }}h |
@if($row['allocated_hours'])
|
{{ $row['allocated_hours'] ? $row['pct'].'%' : '—' }} |