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

{{ ___('common.Filtering') }}

@error('class')
{{ $message }}
@enderror
@error('section')
{{ $message }}
@enderror

{{ $data['title'] }}

@if (hasPermission('student_create')) {{ ___('common.add') }} @endif
@if (@$data['students'])
@if (hasPermission('student_update') || hasPermission('student_delete')) @endif {{-- @dd($data['students']) --}} @forelse ($data['students'] as $key => $row) @if (hasPermission('student_update') || hasPermission('student_delete')) @endif @empty @endforelse
{{ ___('common.sr_no') }} {{ ___('student_info.admission_no') }} {{ ___('student_info.roll_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 }} {{ @$row->student->admission_no }} {{ @$row->roll }} {{ @$row->class->name }} ({{ @$row->section->name }}) {{ @$row->student->parent->guardian_name }} {{ dateFormat(@$row->student->dob) }} {{ @$row->student->gender->name }} {{ @$row->student->mobile }} @if (@$row->student->status == App\Enums\Status::ACTIVE) {{ ___('common.active') }} @else {{ ___('common.inactive') }} @endif

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

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

@else

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

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

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