@forelse ($students as $key => $item)
{{ ++$key }} |
{{ @$item->student->admission_no }} |
|
{{ @$item->student->session_class_student->class->name }} ({{ @$item->student->session_class_student->section->name }}) |
{{ @$item->student->parent->guardian_name }} |
{{ dateFormat(@$item->student->dob) }} |
{{ @$item->student->gender->name }} |
{{ @$item->student->mobile }} |
@if (@$item->student->status == App\Enums\Status::ACTIVE)
{{ ___('common.active') }}
@else
{{ ___('common.inactive') }}
@endif
|
@if (hasPermission('disabled_students_update'))
|
@endif
@empty
{{ ___('common.No data available') }}
{{ ___('common.Please add new entity regarding this table') }}
|
@endforelse