@extends('layouts.app') @section('content')
| ID | Full Name | Username | National ID | Phone | Institute ID | Batch | Status | Actions | |
|---|---|---|---|---|---|---|---|---|---|
| {{ $student->id }} | {{ $student->name ?? 'N/A' }} | {{ $student->user->username ?? 'N/A' }} | {{ $student->user->email ?? 'N/A' }} | {{ $student->national_id ?? 'N/A' }} | {{ $student->phone ?? 'N/A' }} | {{ $student->institute_id ?? 'N/A' }} | {{-- ✅ Display Batch --}}@if($student->batch) {{ $student->batch->name }} @if($student->status === 'active') @else @endif @else No Batch @endif | {{-- ✅ Status --}}@if($student->status === 'active') Active @elseif($student->status === 'inactive') Inactive @elseif($student->status === 'graduated') Graduated @elseif($student->status === 'suspended') Suspended @else Unknown @endif | {{-- ✅ Actions --}}|
| No students found. | |||||||||