@extends('task/layout') @section('content')
{{ $rubric->title }} の評価結果一覧
まだ評価が実施されていません。
評価入力画面から評価を実施してください。
| No. | 評価者 | 被評価者ID | 評価日時 | 合計点 | 総評 | 詳細 | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} | @if($evaluation->evaluator_name) {{ $evaluation->evaluator_name }} @else ID: {{ $evaluation->evaluator_id }} @endif | {{ $evaluation->evaluated_user_id }} | {{ $evaluation->evaluated_at->format('Y-m-d H:i') }} | {{ number_format($evaluation->total_score, 1) }} 点 | @if($evaluation->general_comment) {{ Str::limit($evaluation->general_comment, 50) }} @else - @endif | クリックで展開 | ||||||||||||
評価詳細
総評コメント{{ $evaluation->general_comment }} 振り返りコメント
|
||||||||||||||||||
| 評価項目 | @php $levelCount = 0; if ($rubric->criteria->isNotEmpty()) { $firstCriteria = $rubric->criteria->first(); $levelCount = $firstCriteria->performance->max('level') ?? 3; } @endphp @for($i = 1; $i <= $levelCount; $i++)レベル {{ $i }} | @endfor
|---|---|
|
@if($criteria->category)
📁 {{ $criteria->category->title }}
@endif {{ $criteria->item }} |
@for($level = 1; $level <= $levelCount; $level++)
@php
$performance = $criteria->performance->where('level', $level)->first();
@endphp
@if($performance)
{{ $performance->descriptor }}
@if($rubric->show_points)
({{ $performance->point }}点)
@endif
@else
-
@endif
|
@endfor