@extends('adminlte::page') @section('title', 'Enrollments') @section('content_header')
| # | Student | Class | Session | Roll No | Actions |
|---|---|---|---|---|---|
| {{ $loop->iteration + ($enrollments->currentPage()-1)*$enrollments->perPage() }} | @if($enrollment->student) {{ $enrollment->student->first_name }} {{ $enrollment->student->last_name }} @else Deleted student @endif | {{ $enrollment->class?->name ?? '-' }} | {{ $enrollment->academicSession?->name ?? '-' }} | {{ $enrollment->roll_no ?? '-' }} | |
| No enrollments found. | |||||