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

Training Statistics

All Training
{{ $TrainingCount }}
Upcoming Training
{{ $upcomingTrainingCount }}
Training Goal
{{ $trainingratio }}
Allocation
{{ $overallAllocationPercentage."%" }}

  • Allocated {{ $allocationCounts['allocated'] }}
  • Available {{ $allocationCounts['available'] }}
  • Bench {{ $allocationCounts['bench'] }}

Count Statistics

@php $colors = ['text-warning', 'text-info', 'text-danger', 'text-purple', 'text-success'] @endphp
Defects
{{ $totalDefectCount }}
    @if (!empty($defectCounts['all_labels']) && !empty($defectCounts['all_counts'])) @for ($i = 0; $i < count($defectCounts['all_labels']); $i++)
  • {{ strtoupper($defectCounts['all_labels'][$i]) }} {{ $defectCounts['all_counts'][$i] }}
  • @endfor @endif
Incidents
{{ $totalIncidentCount }}
    @if (!empty($incidentCounts['all_labels']) && !empty($incidentCounts['all_counts'])) @for ($i = 0; $i < count($incidentCounts['all_labels']); $i++)
  • {{ strtoupper($incidentCounts['all_labels'][$i]) }} {{ $incidentCounts['all_counts'][$i] }}
  • @endfor @endif
Change Request
{{ $totalCRCount }}
  • Enhancement {{ $CRCounts['enhancement'] ?? '0' }}
  • Minor {{ $CRCounts['minor'] ?? '0' }}
  • Major {{ $CRCounts['major'] ?? '0' }}
@endsection @section('customScript') @endsection