Name of Student
|
{{ $student->name }}
|
Father's Name |
{{ $student->father_name }}
|
Mother's Name |
{{ $student->mother_name }}
|
Name of College |
{{ $student->college_code }}-
{{ $student->college->college_name }},
{{ $student->college->districts->district_name }},
|
Exam. Roll |
{{ $data['exam_roll'] }}
|
Regn. no & Session |
{{ $student->reg_no }} / {{ $student->ac_session }}
|
{{--
Student Type |
{{ $student->student_type == 1 ? 'REGULAR' : 'IRREGULAR' }}
|
--}}
Subject Name |
{{ $student->subject->subject_code }}-
{{ $student->subject->subject_name }}
|
Credit(Completed/Total) |
{{ $data['total_credits_earned'] }}/{{
$data['total_credit']
}}
|
Result |
{{ $data['cgpa'] != null ? 'CGPA :' . number_format($data['cgpa'] ,2,'.',''): 'Cgpa not Fulfilled' }}
|