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

Surprise 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 Surprise Test Result

Clear

Lists

@foreach($trSurpriseParticipants as $trTestParticipant) @endforeach
SL No. Employee ID Employee Name Designation Department Test Name Batch Test Time Answered Result Supervisor Action
{{ $loop->iteration ?? '' }} {{ $trTestParticipant->employee_id ?? '' }} {{ $trTestParticipant->employee->user->name ?? '' }} {{ $trTestParticipant->employee->designation->name ?? '' }} {{ $trTestParticipant->employee->department->name ?? '' }} {{ (isset($trTestParticipant->trSurpriseSchedule->trTest)) ? $trTestParticipant->trSurpriseSchedule->trTest->name : "" }} {{ $trTestParticipant->tr_batch_name ?? "N/A" }} {{ (isset($trTestParticipant->trSurpriseSchedule->start_time)) ? $trTestParticipant->trSurpriseSchedule->start_time : '' }} {{ $trTestParticipant->trSurpriseResponses->where('answered', 'Yes')->count() }} /{{ $trTestParticipant->trSurpriseResponses->count() }} {{ +$trTestParticipant->obtained }} ({{ +$trTestParticipant->percentage }}%) {{ $trTestParticipant->employee->reportingTo->name ?? 'N/A' }} Evaluate
@include('admin.sections.footer')
@endsection @push('js') @endpush