Student Management
Student Records
| # | Student ID | Name | Age | DOB | Gender | Guardian | Phone | Class | School | Fees | Photo | Actions | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ count($students) - $index }} | {{ $student->student_id }} | {{ $student->student_name }} | {{ $student->student_age }} | {{ \Carbon\Carbon::parse($student->date_of_birth)->format('d/m/Y') }} | {{ $student->gender }} | {{ $student->guardian_name }} | {{ $student->contact_phone }} | {{ $student->student_class }} | {{ $student->school->school_name ?? 'N/A' }} | ₹{{ number_format($student->school_fees, 2, '.', ',') }} |
|