@php
$students_data = ''; // To store student IDs for processing
$i = 1;
$current_section = null; // Track current section for display
$sections = collect($studList)->groupBy('section'); // Group students by section
@endphp
@foreach($sections as $section => $students)