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

Applicants Search {{-- 0 --}}

Filter
{{-- div for the created at --}}
{{-- End the created at --}}
@can(['applicant.view']) @endcan @forelse ($applicants as $key=>$applicant) @can(['applicant.view']) @endcan @empty @endforelse
id Code Applicant Grade Status Phone Created At Locationactions
{{ ++$key }}
{{ mb_substr(\Illuminate\Support\Str::ucfirst(($applicant->applicant_name)), 0, 1) }}
{{ $applicant->applicant_name }} {{ $applicant->applicant_email }}
{{ $applicant->applicant_grade }} {{ $applicant->getStatusTitle() }} {{ $applicant->applicant_phone }} {{ date('d-m-Y h:i:s A', strtotime($applicant->created_at)) }} {{ $applicant->is_international ? 'Outside Egypt':'Egypt' }}
{{-- empty table --}}

There is no data!

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

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

@endsection