@php
// ensure $groupdetails is a Collection and sorted
$sortedGroups = collect($groupdetails)->sortBy('groups')->values();
// $thisWeekId might come from controller — guard if it's not set
$thisWeekGroup = isset($thisWeekId) ? $sortedGroups->firstWhere('id', $thisWeekId) : null;
@endphp
This Week: {{ $groupname }}
Teacher: {{ $teacher->firstname }}
@foreach ($mappedSections as $heading => $content)
@endforeach