@extends('layouts.admin') @section('title', 'Applicants Exams Dates') @section('content')

Select Exam Date

{{-- @if ($applicants != null) --}}
@forelse ($applicants as $key=>$applicant) @empty @endforelse
id Code Applicant Exam Date Phone
{{ ++$key }}
{{ mb_substr(\Illuminate\Support\Str::ucfirst($applicant->applicant_name), 0, 1) }}
{{ $applicant->applicant_name }} {{ $applicant->applicant_email }}
{{ $applicant->exam_date_time }} {{ $applicant->applicant_phone }}
{{-- empty table --}}

There is no data!

@if ($applicants)
{{ $applicants->appends(Request::except('page'))->render('components._pagination') }}

Showing {{ $applicants->count() }} of {{ $applicants->total() }} record(s).

@endif
{{-- @endif --}}
@endsection