@extends('layouts.app') @section('title', auth()->user()->isEmployee() ? 'My Evaluations' : 'Performance Evaluation') @section('page-title', auth()->user()->isEmployee() ? 'My Evaluations' : 'Performance Evaluations') @section('content')
| Eval # | Employee | Dept. | Period | Score | Rating | Status | Actions |
|---|---|---|---|---|---|---|---|
| {{ $eval->eval_number }} |
{{ strtoupper(substr($eval->employee->first_name??'?',0,1)) }}
{{ $eval->employee->full_name ?? '—' }}
|
{{ $eval->employee->department->name ?? '—' }} | {{ $eval->period->name ?? '—' }} | {{ $eval->weighted_score ? round($eval->weighted_score).'%' : '—' }} | @if($eval->overall_rating) @else — @endif | {{ ucfirst($eval->status) }} | |
| No evaluations found | |||||||