{{ setting('application_name') }}

{{ setting('address') }}

{{___('common.Student Name')}} : {{ @$data['student']->first_name }} {{ @$data['student']->last_name }} {{___('common.Guardian Phone')}} : {{ @$data['student']->parent->guardian_mobile }}
{{___('common.Guardian Name')}} : {{ @$data['student']->parent->guardian_name }} {{___('common.Guardian Email')}} : {{ @$data['student']->parent->guardian_email }}
{{___('common.Class(Section)')}} : {{ @$data['student']->session_class_student->class->name }} ({{ @$data['student']->session_class_student->section->name }}) {{___('common.Result')}} : {{ @$data['resultData']['result'] }}
{{___('common.DOB')}} : {{ dateFormat(@$data['student']->dob) }} {{___('common.GPA')}} : @if($data['resultData']['result'] == "Passed") {{ @$data['resultData']['gpa'] }} @else {{ '0.00' }} @endif
{{___('common.Grade Sheet')}}
@foreach (@$data['resultData']['marks_registers'] as $item) @endforeach
{{___('common.Subject Code')}} {{___('common.Subject Name')}} {{___('common.Grade')}}
{{ $item->subject->code }} {{ $item->subject->name }} @php $n = 0; @endphp @foreach ($item->marksRegisterChilds as $item) @php $n += $item->mark; @endphp @endforeach {{ markGrade($n) }}