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