@extends('layouts.app') @section('title', 'Student Management') @section('page-title', 'Student Management') @section('content')
Manage all student records, assignments, and profiles.
| Student | Class | Roll No. | Parent | Status | Actions |
|---|---|---|---|---|---|
|
{{ $student->name }}
{{ $student->email }} |
{{ $student->studentProfile?->schoolClass?->full_name ?? '—' }} | {{ $student->studentProfile?->roll_number ?? '—' }} | {{ $student->studentProfile?->parent?->name ?? '—' }} | @if($student->is_active) Active @else Inactive @endif | |
|
No students found. |
|||||