InActive List
| # | Student ID | Student Name | Age | Date of Birth | Gender | Guardian Name | Contact Phone | Class | Fees | Status | Student Image | Action | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ count($students) - $index }} | {{ $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 }} | ₹{{ number_format($student->school_fees, 2, '.', ',') }} | @if (Auth::user()->role == 1) @else {{ $student->designation ? 'Active' : 'Inactive' }} @endif |