@extends('layouts.dashboard') @section('content')
Overview of project status by Project Managers
PM | ✅ Complete | ⏸ Paused | ⚠️ Issues | ⛔ Hold | 🔧 Working | |
---|---|---|---|---|---|---|
{{ $row['pm']->name }} | @foreach (['Complete', 'Paused', 'Issues', 'Hold', 'Working'] as $status)@if(($row['statusCounts'][$status] ?? 0) > 0) @if($status === 'Working') {{ $row['statusCounts'][$status] }} @else @endif @else 0 @endif | @endforeach|||||
No data available for the selected filters. | ||||||
Total | {{ $totals['Complete'] }} | {{ $totals['Paused'] }} | {{ $totals['Issues'] }} | {{ $totals['Hold'] }} | {{ $totals['Working'] }} |
Project Name | Status | Country | Department | Month |
---|---|---|---|---|
{{ $project->name }} | {{ $project->project_status }} | {{ optional($project->country)->name }} | {{ optional($project->department)->name }} | {{ \Carbon\Carbon::parse($project->project_month)->format('F Y') }} |
No matching projects found for this filter.
@endif