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

@if(!empty($status)){{$status}} @endif

@if(count($details) > 0)
@foreach($details as $c) @endforeach()
# Nat.Id Names Phone Alt.Phone County SubCounty Const Next Kin Email Date
{{$c->id}} {{$c->id_number}} {{$c->first_name . ' ' . $c->middle_name . ' ' . $c->last_name }} {{$c->phone}} {{$c->ktel}} {{$c->countyName}} {{$c->subName}} {{$c->constname}} {{$c->kname}} {{$c->email}} {{$c->reg_date}}
{{ $details->links() }}
@else
No Beyond Zero Applications Made So Far.
@endif
@stop