@extends('Training::backend.layouts.app') @section('title', 'Test Result List') @push('css') @endpush @section('content')

Test Result List

@if($errors->any())
@foreach ($errors->all() as $error)
* {{$error}}
@endforeach
@endif @if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif

Filter

Search Test Result

Clear
@foreach($trTestParticipants as $trTestParticipant) @if(isset($trTestParticipant->selectedCandidate->candidate) && isset($trTestParticipant->selectedCandidate->candidate->user)) @endif @endforeach
SL No. Trainee Name Test Class Batch Test Time Answered Result Supervisor Action
percentage >= 70 ? '' : 'disabled'}}> {{ $loop->iteration ?? '' }} {{ $trTestParticipant->selectedCandidate->candidate->user->name }} {{ (isset($trTestParticipant->trTestSchedule->trTest)) ? $trTestParticipant->trTestSchedule->trTest->name : "" }} {{ (isset($trTestParticipant->trTestSchedule->trClassSchedule)) ? $trTestParticipant->trTestSchedule->trClassSchedule->trClass->name : "" }} {{ $trTestParticipant->tr_batch_name ?? "N/A" }} {{ (isset($trTestParticipant->trTestSchedule->start_time)) ? $trTestParticipant->trTestSchedule->start_time : '' }} {{ $trTestParticipant->trTestResponses->where('answered', 'Yes')->count() }} /{{ $trTestParticipant->trTestResponses->count() }} {{ +$trTestParticipant->obtained }} ({{ +$trTestParticipant->percentage }}%) {{ $trTestParticipant->teamLeader->name ?? 'N/A' }} Evaluate @if($trTestParticipant->percentage < 70)
@csrf
@endif
@include('admin.sections.footer') @endsection @push('js') @endpush