@extends('adminlte::page')
@section('title', 'HR Evaluation Report')
@section('content_header')
HR Evaluation Report
@stop
@section('content')
| # |
Staff Name |
Department |
Attendance (%) |
Job Card Completion (%) |
Overall Score |
@forelse($evaluations as $index => $eval)
first) class="table-success fw-bold" @endif>
| {{ $index + 1 }} |
{{ $eval->staff_name }} |
{{ $eval->department }} |
{{ $eval->attendance }}% |
{{ $eval->job_card_rate }}% |
{{ $eval->score }} |
@empty
| No evaluation data available |
@endforelse
{{-- Department Performance Summary --}}
| # |
Department |
Average Score (%) |
@foreach($departmentScores as $index => $dept)
first) class="table-success fw-bold" @endif>
| {{ $index + 1 }} |
{{ $dept->department }} |
{{ $dept->average_score }} |
@endforeach
{{-- Charts --}}
@stop
@section('js')
@stop