@extends('admin.layouts.app') @section('content')

Applicant Reports

@if (isset($data) && !empty($data)) @foreach ($data as $index => $dt) @endforeach @endif
# Full Name Job Title Email Address Date Applied
{{ $index + 1 }}
{{ $dt->full_name }}
{{ $dt->job_title ?? '-' }} {{ $dt->email_address ?? '-' }} {{ date('F d, Y h:i A', strtotime($dt->created_at)) }}
@endsection