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

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

@if(count($all) > 0)
@foreach($all as $c) @endforeach()
# Nat.Id Names County RegNo. From To Campus By
{{$co++}} {{$c->id_number}} {{$c->first_name . ' ' . $c->middle_name . ' ' . $c->last_name }} {{$c->county}} {{$c->reg_num}} {{$c->newac}}-{{$c->newintake}} {{$c->curac}}-{{$c->curintake}} {{$c->campus}} {{$c->by}}
@else
No Student has deffered.
@endif
@stop