Progress Review
Academic Term 2024-2025
Learner’s Name: {{ $milestoneReport['student']['name'] ?? '' }}
@php $ageParts = explode(':', $milestoneReport['ageString'] ?? ''); @endphp{{ $ageParts[0] ?? '' }}: {{ $ageParts[1] ?? '' }}
Grade: {{ $milestoneReport['student']->classSection->name ?? '' }}
Attendance: {{ $milestoneReport['totalDaysPresent'] ?? '' }} Out Of {{ $milestoneReport['totalWorkingDays'] ?? '' }}
Facilitators: @foreach($milestoneReport['classSectionTeacher'] ?? [] as $i => $teacher) {{ $teacher['name'] }}@if($i + 1 < count($milestoneReport['classSectionTeacher'])){{ ', ' }}@endif @endforeach
Date: {{ $milestoneReport['currentDate'] ?? '' }}
Progress key:
@php
$progressOrder = [
'Not yet' => 1,
'Sometimes' => 2,
'Most Of the Time' => 3
];
$sortedKeys = collect($milestoneReport['progressKeys'] ?? [])->sortBy(function ($key) use ($progressOrder) {
return $progressOrder[$key['name']] ?? 999;
});
@endphp
@foreach($sortedKeys as $key)
- {{ $key['name'] }} @endforeach
{{ $domain['name'] }}
{{ $subdomain['name'] }}
| {{ $strand['strand'] ?? '' }} | @elseif($subdomain['name'] === 'Expresses Preferences in Work and Play'){{ $strand['strand'] ?? '' }} | @elseif($subdomain['name'] === 'Participates in Group Routines'){{ $strand['strand'] ?? '' }} | @elseif($subdomain['name'] === 'Personal Care'){{ $strand['strand'] ?? '' }} | @elseif($subdomain['name'] === 'Body Awareness'){{ $strand['strand'] ?? '' }} | @elseif($subdomain['name'] === 'Pre-writing'){{ $strand['strand'] ?? '' }} | @elseif($subdomain['name'] === 'Number Words and Symbols'){{ $strand['strand'] ?? '' }} | @elseif($subdomain['name'] === 'Time Intervals'){{ $strand['strand'] ?? '' }} | @elseif($subdomain['name'] === 'Music and Movement'){{ $strand['strand'] ?? '' }} | @elseif($subdomain['name'] === 'Cooking'){{ $strand['strand'] ?? '' }} | @else{{ $strand['strand'] ?? '' }} | @endif@if(!empty($strand['progress_key'])) @endif |