@extends('adminlte::page') @section('title', 'Student Results') @section('content_header')

Student Results

@stop @section('content')
{{-- Filter Form --}}
Reset
{{-- Student Table --}} @if($students->count()) @foreach($students as $student) @endforeach
Admission No Name Class Actions
{{ $student->admission_no }} {{ $student->first_name }} {{ $student->last_name }} {{ $student->class->name ?? '-' }} View Result
{{-- Pagination --}} {{ $students->links() }} @else

No students found.

@endif
@stop