@extends('adminlte::page') @section('title', 'Students') @section('content_header')
| Photo | Admission No | Name | Gender | Class | Dormitory | Session | Guardian | Actions |
|---|---|---|---|---|---|---|---|---|
|
@if($student->photo && Storage::exists('public/'.$student->photo))
|
{{ $student->admission_no }} | {{ $student->first_name }} {{ $student->last_name }} | {{ ucfirst($student->gender) }} | {{ $student->class?->name ?? '-' }} | {{ $student->dormitory?->name ?? '-' }} | {{ $student->academicSession?->name ?? '-' }} | @if($student->guardian) {{ $student->guardian->first_name }} {{ $student->guardian->last_name }} @else - @endif | |
| No students found. | ||||||||