@extends('layouts.master') @section('mainContent')

Count Statistics

Milestone
{{ $totalMilestoneCount }}
Open: {{ $milestoneCounts['open'] }}
  • InProgress {{ $milestoneCounts['inprogress'] }}
  • Closed {{ $milestoneCounts['closed'] }}
Tasks
{{ $totalTaskCount }}
Open: {{ $taskCounts['open']}}
  • InProgress {{ $taskCounts['inprogress'] }}
  • Closed {{ $taskCounts['closed'] }}
Issues
{{ $totalIssueCount }}
Open: {{ $issueCounts['open'] }}
  • InProgress {{ $issueCounts['inprogress'] }}
  • Closed {{ $issueCounts['closed'] }}
Risks
{{ $totalRiskCount }}
Acceptance: {{ $riskCounts['accept'] }}
  • Prepare Response {{ $riskCounts['response'] }}
  • Report to Board {{ $riskCounts['report'] }}

Milestone Insights

Tasks Priority Insights

Issues Type Insights

Recent Risks

@if ($riskData->isNotEmpty()) @foreach ($riskData as $tld => $row) @php $auth = Auth::user(); $url = $auth->hasPermission('project_risks', 'view') ? route('risks.details', ['id' => $row->id]) : 'javascript:;'; $riskId = isset($row->risk_id) ? $row->risk_id : '-'; $statusText = isset($row->statusData) ? $row->statusData->name : '-'; $colourText = isset($row->statusData) ? $row->statusData->color_name : ''; @endphp @endforeach @else @endif
Risk ID Impact Probability Tolerance
#{{ $riskId }}
{{ $row->impactData->impact_name ?? '-' }} {{ $row->probabilityData->probability_name ?? '-' }} @if ($row->toleranceData) {{ $row->toleranceData->tolerance_name }} @else N/A @endif
No Records Found
@endsection @section('customScript') @endsection