@extends('layouts.admissions') @section('content')
@if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (session('status'))
{{ session('status') }}
@endif

Search applicants

{{csrf_field()}}
{{csrf_field()}}

@if(isset($details))
@forelse($details as $c) @empty
No data meeting the creteria
@endforelse
# Nat.Id Names Phone Gender Alt.Phone Email County SubCounty Const Next Kin Date
{{$c->id}} {{$c->id_number}} {{$c->first_name .' '.$c->middle_name.' '.$c->last_name }} {{$c->phone}} {{$c->gender}} {{$c->ktel}} {{$c->email}} {{$c->countyName}} {{$c->subName}} {{$c->constname}} {{$c->kname}} {{$c->reg_date}}
{{$details->links()}}
@endif
@stop