@error('schooltype') {{ $message }} @enderror
@error('category') {{ $message }} @enderror
@error('schoolname')

{{ $message }}

@enderror
@if ($schools == null)

No School

@endif @if ($schools != null)
Schools
{{ $schools->links() }}
@if ($schools->count() < 1) @endif @if ($schools->count() > 0) @foreach ($schools as $index => $school) @endforeach @endif
# School Registered Students
No School
{{ $index + 1 }} {{ $school->name }} {{ $school->currentstudents ? $school->currentstudents->count() : 0 }} Download Subject Analysis Download Student List
@endif