@extends('Training::backend.layouts.app') @section('title', 'New joiner List') @section('content')

New joiner List

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

Filter

Search Trainee

Clear

Lists

@foreach($trainee_lists as $trainee) @endforeach
SL No. Name Phone Job Send SMS for Training Recruitment Batch Job Location Interested to attend Training
{{ $loop->iteration ?? '' }} {{ $trainee->name ?? '' }} {{ $trainee->phone ?? '' }} {{ $trainee->candidate->selectedCandidate->jobs->jobTitle->name ?? 'N/A' }} @if(isset($trainee->training_notification) && ($trainee->training_notification->sending_sms == 'yes')) @else @endif {{ $trainee->candidate->selectedCandidate->batch_name ?? 'N/A' }} {{ $trainee->candidate->area->name ?? '' }} @if(isset($trainee->training_notification) && ($trainee->training_notification->is_interested == 'yes')) {{ $trainee->training_notification->is_interested ?? '' }} @elseif(isset($trainee->training_notification) && ($trainee->training_notification->is_interested == 'no')) {{ $trainee->training_notification->remarks ?? '' }} @else Interested to attend Training @endif
@if($trainee->status == 1) @else @endif
@include('admin.sections.footer') @endsection @push('js') @endpush