@php use App\Helpers\AcademicTranscriptGradeFormatIS; use Carbon\Carbon; @endphp {{ config("app.name", "Laravel") }} @vite(["resources/css/app.css", "resources/js/app.js"]) @foreach ($students as $student)

{{ $student["Information"]["Name"] }}

successfully completed the course of Cambridge Curriculum for

{{ $student["Information"]["Grade"] }}

at KBTC International School in {{ $student["Information"]["Academic Year"] }} Academic Year.

{{ $student["Information"]["Issuance Date"] }}

KBTC International School

Academic Transcript

InternationalSchoolLogo
@foreach ($student["Information"] as $name => $info) @if ($name != "Program" && $name != "Campus")

{{ $name }} : {{ $info }}

@endif @endforeach

Total Guided Learning Hours and Grade of Main Subjects

@foreach ($student["Subjects"] as $subjectName => $mark) @php $lookupSubjectName = $subjectName; if ( isset($student['Information']['Program']) && $student['Information']['Program'] == 'dual' && ($subjectName == 'NCC' || $subjectName == 'ICT') ) { $lookupSubjectName = 'ICT'; } elseif ( isset($student['Information']['Program']) && $student['Information']['Program'] == 'cpc' && ($subjectName == 'NCC' || $subjectName == 'ICT') ) { $lookupSubjectName = 'NCC'; } if ($lookupSubjectName === "") { continue; } $program = $student['Information']['Program']; if ($program == 'crc') { $program = 'cec'; } $grade = $student["Information"]["Grade"]; if ($grade == "KG" || $grade == "Pre-KG" || $grade == "Pre KG" || $grade == "Pre-Kindergarden" || $grade == "Pre Kindergarden") { $grade = "Kindergarten"; } if ($grade == "Secondary 4") { $grade = "Secondary 3"; } @endphp @endforeach
Main Subjects Total Guided Learning Hours Grade
{{ $lookupSubjectName }} {{ $learningHours->where("grade", "=", $grade)->where("program", "=", $program)->where("campus", "=", $student["Information"]["Campus"])->where("subjectcategory", "=", "mainsubjects")->where("subjectname", "=", $lookupSubjectName)->first()->hour }} {{ AcademicTranscriptGradeFormatIS::format($mark["Mark"]) }}
@if ($student['Information']['Program'] != 'cec' && $student['Information']['Program'] != 'crc')

Total Guided Learning Hours of Add-on Subjects

@foreach ($learningHours->where("grade", "=", $grade)->where("program", "=", $student["Information"]["Program"])->where("campus", "=", $student["Information"]["Campus"])->where("subjectcategory", "=", "addonsubjects") as $subject) @endforeach
Add-on Subjects Total Guided Learning Hours
{{ $subject->subjectname }} {{ $subject->hour }}
@endif
@foreach ($student["Review"] as $header => $remark)
{{ $header }}
{{ $remark }}
@endforeach
@foreach ($student["Signs"] as $text => $sign)
Signature @if(Str::contains($text,"/")) @php $newTextArray = explode("/",$text); @endphp @foreach($newTextArray as $newText)

{{ $newText }}

@endforeach @else @if (preg_match('/^(.*?)\s*\((.*?)\)$/', $text, $matches))

{{ trim($matches[1]) }}

({{ trim($matches[2]) }})

@else

{{ $text }}

@endif @endif
@endforeach

Explanatory Notes

Grade Mark Description
Genius (A*) 91 - 100 Candidate has superb performance and skills over this subject
Distinction (A) 80 - 90 Candidate demonstrated outstanding performance satisfying all learning outcomes and significantly exceeding a number of them
Merit (B) 60 - 79 Candidate demonstrated strong performance satisfying all learning outcomes and exceeding a number of them
Pass (C) 40 - 59 Candidate demonstrated competent performance satisfying all learning outcomes
Fail (D) 20 - 39 Candidate did not satisfy all of the learning outcomes
Incomplete (E) 0 - 19 Candidate only has meagre and insufficient knowledge on this subject
Absent (F) - Candidate has completed some component(s) of unit assessment

Conditions of Issue :

  1. Fulfilment of Academic Requirements : The academic transcript will be issued upon successful completion of all academic requirements for the specified program of study at KBTC International School. This includes meeting credit hour requirements, passing required courses, and fulfilling any other program-specific criteria.
  2. Clearance of Financial Obligations : The academic transcript will only be released once all financial obligations, including tuition fees, library fines, and any outstanding payments, have been settled in full.
  3. Return of School Property : The student must return any school property, including library materials, and any other items borrowed or leased, before the academic transcript can be issued.
  4. Resolution of Outstanding Issues : If there are any outstanding issues or concerns related to academic performance, behaviour, or other matters, those must be resolved before the academic transcript can be released.
  5. Compliance with School Policies : The student must have complied with all school policies and regulations during their enrolment at KBTC International School.
  6. Request and Processing Time : The academic transcript will be processed within a reasonable timeframe after an official request is submitted by the student or authorized party. The school may have a specific procedure for transcript requests, and all required forms must be completed.
  7. Confidentiality and Third-Party Requests : The academic transcript will be released in accordance with the school's policies on confidentiality. Third-party requests for transcripts may require additional authorization from the student.
brands
@endforeach