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

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

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

{{ ___('student_info.Promote Students In Next Session') }}

@error('promote_session')
{{ $message }}
@enderror
@error('promote_class')
{{ $message }}
@enderror
@error('promote_section')
{{ $message }}
@enderror
@if (@$message) @else

@endif
@if ($students)
@csrf @method('POST')
@foreach ($students as $key=>$item) @endforeach
{{ ___('common.Admission no') }} {{ ___('common.Student Name') }} {{ ___('common.Guardian Name') }} {{ ___('common.Mobile Number') }} {{ ___('common.Result') }} {{ ___('common.Roll') }}
{{ @$item->student->admission_no }} {{ @$item->student->first_name }} {{ @$item->student->last_name }} {{ @$item->student->parent->guardian_name }} {{ @$item->student->mobile }} @if (array_key_exists(@$item->student->id, $results)) {{ $results[@$item->student->id] == 'Pass' ? 'Passed':'Failed' }} @else {{___('common.Pending')}} @endif
@if (hasPermission('promote_students_create'))
@endif
@endif
@endsection @push('script') @include('backend.partials.delete-ajax') @endpush