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

Trainee List

@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif

Filter

Search

Clear

Lists

{{-- --}} @foreach($trTestParticipants as $trTestParticipant) @if(isset($trTestParticipant->selectedCandidate->candidate) && isset($trTestParticipant->selectedCandidate->candidate->user)) {{-- --}} @endif @endforeach
SL No. Trainee Name Phone Job Test Class Rated Percentage TL Action
--}} {{-- --}} {{-- {{ $loop->iteration ?? '' }} {{ $trTestParticipant->selectedCandidate->candidate->user->name }} {{ $trTestParticipant->selectedCandidate->candidate->user->phone }} {{ $trTestParticipant->selectedCandidate->jobs->jobTitle->name ?? 'N/A' }} {{ $trTestParticipant->trTestSchedule->trTest->name }} {{ $trTestParticipant->trTestSchedule->trClassSchedule->trClass->name }} {!! $trTestParticipant->trRating == null ? 'No' : 'Yes' !!} {{ $trTestParticipant->trRating ? +$trTestParticipant->trRating->percentage : 0 }}% {{ $trTestParticipant->teamLeader->name ?? 'N/A' }} @if($trTestParticipant->trRating == null) Rate @else Update @endif @can('TNA Rate') @if($trTestParticipant->TrTnaRating == null) TNA Rate @else Update TNA @endif @endcan
@include('admin.sections.footer')
@endsection @push('js') @endpush