@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 (@$data['students'])
@if (hasPermission('student_update') || hasPermission('student_delete')) @endif @forelse ($data['students'] as $key => $row) @if (hasPermission('student_update') || hasPermission('student_delete')) @endif @empty @endforelse
{{ ___('common.sr_no') }} {{ ___('student_info.Student Name') }} {{ ___('academic.class') }} ({{ ___('academic.section') }}) {{ ___('student_info.Date Of Birth') }} {{ ___('student_info.mobile') }} {{ ___('student_info.guardian_name') }} {{ ___('student_info.guardian_mobile') }}{{ ___('common.action') }}
{{ ++$key }} {{ @$row->first_name }} {{ @$row->last_name }} {{ @$row->class->name }} ({{ @$row->section->name }}) {{ dateFormat(@$row->dob) }} {{ @$row->phone }} {{ @$row->guardian_name }} {{ @$row->guardian_phone }}

{{ ___('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