@extends('admin/layouts/layoutMaster') @section('title', 'Applicant Lists') @section('vendor-style') @endsection @section('content')
Applicants With Reg. Number
@if(session()->has('errors')) @endif
@if($applicants) @foreach($applicants as $app) @endforeach @else @endif
# Name Email Jamb Phone Assign By Year
{{$loop->iteration}} {{$app->name}} {{$app->email}} {{$app->jamb}} {{$app->phone}} {{$app->staff ?? 'No Staff'}} {{$app->entry_year}}
No records found
@section('page-script') @endsection @endsection