@extends('layouts.performance') @section('title', 'Rapor Detayı') @section('page', 'report') @section('perf-content') @php $activeTab = ''; $reportLogo = null; foreach (['assets/logo.jpg', 'assets/logo.jpeg', 'assets/logo.png'] as $candidate) { if (file_exists(public_path($candidate))) { $reportLogo = asset($candidate); break; } } @endphp
{{ $assignment->employee_name }} - {{ $assignment->period_name }}
| Soru | Puan | Açıklama |
|---|---|---|
| {{ $question->question_text }} | {{ $score !== null ? (int) $score : '-' }} | {{ $label }} |
|
Dönem
{{ $assignment->period_name }}
|
Personel
{{ $assignment->employee_name }}
|
Sorumluluk Merkezi
{{ $centerLabel }}
|
|
1. Amir
{{ $assignment->evaluator1_name }}
{{ $scores['avg1'] !== null ? number_format((float) $scores['avg1'], 2, '.', '') : '-' }}
|
2. Amir
{{ $hasEvaluator2 ? ($assignment->evaluator2_name ?? '-') : 'Yok' }}
{{ $scores['avg2'] !== null ? number_format((float) $scores['avg2'], 2, '.', '') : '-' }}
|
Genel Ortalama
@if ($scores['final'] !== null)
{{ number_format((float) $scores['final'], 2, '.', '') }}
@if ($grade['label'] !== '')
({{ $grade['label'] }})
@endif
@else
-
@endif
|
| Soru Seti | Soru | 1. Amir | 2. Amir |
|---|---|---|---|
| {{ $row->set_name }} | {{ $row->question_text }} | @if ((int) $row->active !== 1) Pasif @else {{ $row->score1 !== null ? (int) $row->score1 : '-' }} @endif | @if ((int) $row->active !== 1) Pasif @else {{ $row->score2 !== null ? (int) $row->score2 : '-' }} @endif |