@extends('Training::layouts.app') @section('content') @if(session('success'))
{{ session('success') }}
@endif @if(session('info'))
{{ session('info') }}
@endif @if(session('error'))
{{ session('error') }}
@endif

Training History

Exam Name
Class Name
Exam Date
Result
@forelse($testResults as $participant)

{{ $participant->trTestSchedule->trTest->name }}

@if($participant->selectedCandidate->job_id != null && $participant->selectedCandidate->batch_id != null)

{{ $participant->trTestSchedule->trClassSchedule->trClass->name ?? '' }}

@endif

{{ date('d F, Y', strtotime($participant->trTestSchedule->start_time)) }}

{{ $participant->trRating->percentage ?? ''}}
@empty No exam schedule found! @endforelse
@endsection @push('js') @endpush