@extends('layouts.admin') @section('title','Applicants Grade statistics') @section('content')

{{ request()->international ? 'International':'Local' }} Applicants 0

@forelse ($applicants as $key=>$applicant) @empty @endforelse
id Code Student Name Student Phone Father Name Father Phone Mother Name Mother Phone created_at

{{ ++$key }}
{{ mb_substr(\Illuminate\Support\Str::ucfirst(($applicant->applicant_name)), 0, 1) }}
{{ $applicant->applicant_name }} {{ $applicant->applicant_email }}

{{ $applicant->applicant_phone }}
{{ mb_substr(\Illuminate\Support\Str::ucfirst(($applicant->applicant_father_name)), 0, 1) }}
{{ $applicant->applicant_father_name }} {{ $applicant->applicant_father_email }}

{{ $applicant->applicant_father_phone }}
{{ mb_substr(\Illuminate\Support\Str::ucfirst(($applicant->applicant_mother_name)), 0, 1) }}
{{ $applicant->applicant_mother_name }} {{ $applicant->applicant_mother_email }}

{{ $applicant->applicant_mother_phone }}

{{ $applicant->created_at }}
{{-- empty table --}}

There is no data!

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

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

@endsection