Name of Student
|
{{$studentInfo->name}}
|
Father's Name
|
{{$studentInfo->father_name}}
|
Mother's Name
|
{{$studentInfo->mother_name}}
|
College Name
|
[{{$studentInfo->college->college_code}}] {{$studentInfo->college->college_name}}
|
Exam. Roll
|
{{$data->exam_roll}}
|
Registration No.
|
{{$studentInfo->reg_no}}
|
{{--
Session
|
{{$studentInfo->ac_session}}
|
--}}
{{--
Student Type |
{{ $studentInfo->student_type == 1 ? "REGULAR" : "IREGULAR" }}
|
--}}
@if($data->result_type != '')
{{--
Result Type
|
{{ optional($data->result_type)->result_type_name }}
|
--}}
@endif
@if ($data->class_result == NULL || $data->class_result == '')
CGPA
|
{{$data->cgpa!=0 ? $data->cgpa : 'Failed'}}
|
@else
Total Marks (obtained)
|
@php $total_mark = 0; @endphp
@foreach($data['details'] as $key => $item)
@php $total_mark += $item->total_mark @endphp
@endforeach
{{ $total_mark }}
|
Result
|
{{ $data->class_result }}
|
@endif