@extends('layouts.adminapp') @section('content')

{{ __('lng.StudentSkillPerformance') }}

{{ $CoursePeriods->title }}
{{ date('d-m-Y', strtotime($FromDate)) }} to {{ date('d-m-Y', strtotime($ToDate)) }}
{{-- --}}
{{$Student->name}} Admission No. {{$Student->admission_no}}
Batch: {{$CompletedBatchCourse->batchcourse->course->title}} [{{$CompletedBatchCourse->batchcourse->batch->title}}]

Cousre: {{$CompletedBatchCourse->courseperiod->title}}

Report Type: Individual Report

@php $si=0; @endphp @foreach ($StudentExams as $StudentExam) @endforeach
{{ __('lng.SiNo') }} {{ __('lng.AdmssionNo') }} {{ __('lng.Student') }} {{ __('lng.Mark') }} {{ __('lng.TotalMark') }}
{{ ++$si }}
{{ App\Models\Student::find($StudentExam->student_id)->admission_no }}
{{ App\Models\Student::find($StudentExam->student_id)->name }}
{{ $StudentExam->total }}
{{ $StudentExam->total }}
{{-- --}}
{{-- --}} @endsection