@extends('backend.master') @section('title') {{ ___('common.Online Class Routine 2023') }} @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
@error('exam_type')
{{ $message }}
@enderror
@if (@$data['resultData'])
@if (count(@$data['resultData']) > 0)
{{___('common.Pdf Preview')}}
@endif

{{ setting('application_name') }}

{{ setting('address') }}

@forelse ($data['resultData'] as $key=>$item) @empty @endforelse
{{___('common.#')}} {{___('student_info.Student Name')}} {{___('student_info.admission_no')}} {{___('academic.class')}} ({{___('academic.section')}}) {{___('report.Position')}} {{___('report.Result')}} {{___('report.Point')}} {{___('report.Grade')}} {{___('report.Total Mark')}}
{{ ++$key }} {{ @$item->student->first_name }} {{ @$item->student->last_name }} {{ @$item->student->admission_no }} {{ @$item->student->session_class_student->class->name }} ({{ @$item->student->session_class_student->section->name }}) {{ @$key }} {{ @$item->result }} {{ @$item->grade_point }} {{ @$item->grade_name }} {{ @$item->total_marks }}
@include('backend.includes.no-data')
@endif
@endsection