@extends('layouts.app') @section('content')
| ID Card | Photo | Name | Class | Section | Phone | Actions | |
|---|---|---|---|---|---|---|---|
| {{$student->id_card_number}} | @if (isset($student->student->photo)) | {{$student->student->first_name}} {{$student->student->last_name}} @if($student->student->gender == 'male') @else @endif | {{$student->schoolClass->class_name ?? 'N/A'}} | {{$student->section->section_name ?? 'N/A'}} | {{$student->student->email}} | {{$student->student->phone}} | |
| No students found@if(request()->hasAny(['class_id', 'section_id', 'search'])) Try adjusting your filters@endif | |||||||