@extends('layouts.admissions') @section('content')
@if (count($errors) > 0)
@endif
{{csrf_field()}}
@if(!empty($filtered)) @else @endif @if(!empty($students))
@foreach($students as $key) @endforeach
# RegNo Name NationalID Email Gender Campus Joining Date Acad.Year Phone Alt. Phone County Subcounty Constituency Action
{{$i++}} {{$key->reg_num}} {{$key->first_name." ".$key->middle_name." ".$key->last_name}} {{$key->id_number}} {{$key->email}} {{$key->gender}} {{$key->name}} {{$key->joining_date}} {{$key->year."-".$key->intake}} {{$key->phone}} {{$key->altphone}} {{$key->county}} {{$key->subcounty}} {{$key->const}} View payment
@else
No Data Available
@endif
@stop