Total Soal
{{ $totalQuestions }}
Approved
{{ $approvedQuestions }}
In Review
{{ $reviewQuestions }}
Draft
{{ $draftQuestions }}
No Status
{{ $noStatusQuestions }}
| Kode Soal | Pembuat | Departemen/Institusi | Status Soal | Status Review | Recommendation | Aksi | |
|---|---|---|---|---|---|---|---|
|
{{ $question->question_code }}
ID: {{ $question->id }}
|
{{ $question->author_name }}
{{ $question->institution_code }}
|
{{ $question->department }}
@if($question->institution)
{{ $question->institution }}
@endif
|
@if($question->status === 'approved') ✅ Approved @elseif($question->status === 'review') 🔍 Review @elseif($question->status === 'draft') 📝 Draft @else ❓ Unknown @endif |
@if($completedReviews->count() > 0)
{{ $completedReviews->count() }} Review(s)
@if($totalAverage > 0)
⭐ {{ $totalAverage }}%
@endif
@foreach($averageScores as $aspect => $score)
@if($score !== null)
{{ $score }}
{{ $aspect }}
|
@php
$approveRecommendations = $completedReviews->where('recommendation', 'approved')->count();
$reviseRecommendations = $completedReviews->where('recommendation', 'revise')->count();
$rejectRecommendations = $completedReviews->where('recommendation', 'reject')->count();
@endphp
@if($completedReviews->count() > 0)
@if($approveRecommendations > 0 && $approveRecommendations >= $reviseRecommendations && $approveRecommendations >= $rejectRecommendations)
✅ Recommended ({{ $approveRecommendations }})
@elseif($rejectRecommendations > 0 && $rejectRecommendations >= $approveRecommendations)
❌ Not Recommended ({{ $rejectRecommendations }})
@else
⚠️ Need Revision ({{ $reviseRecommendations }})
@endif
@if($completedReviews->whereNotNull('overall_comments')->count() > 0)
📝 {{ $completedReviews->whereNotNull('overall_comments')->count() }} comment(s)
@endif
@else
⏳ No Decision
@endif
|
||
Tidak ada soal ditemukanCoba ubah filter pencarian atau tambahkan soal baru. |
|||||||