@extends('backend.master') @section('title') {{ @$data['title'] }} @endsection @section('content')
{{-- bradecrumb Area S t a r t --}} {{-- bradecrumb Area E n d --}}

{{ ___('student_info.disabled_students') }}

@csrf
@error('class')
{{ $message }}
@enderror
@error('section')
{{ $message }}
@enderror
@if ($students)
@csrf @method('POST')
@if (hasPermission('disabled_students_update') || hasPermission('disabled_students_delete')) @endif @forelse ($students as $key => $item) @if (hasPermission('disabled_students_update')) @endif @empty @endforelse
{{ ___('common.sr_no') }} {{ ___('student_info.admission_no') }} {{ ___('student_info.Student Name') }} {{ ___('academic.class') }} ({{ ___('academic.section') }}) {{ ___('student_info.guardian_name') }} {{ ___('student_info.Date Of Birth') }} {{ ___('common.gender') }} {{ ___('student_info.Mobile Number') }} {{ ___('common.status') }}{{ ___('common.action') }}
{{ ++$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

{{ ___('common.No data available') }}

{{ ___('common.Please add new entity regarding this table') }}

@endif
@endsection @push('script') @include('backend.partials.delete-ajax') @endpush