@extends('layouts.app') @section('content')

Create Individual Session

@csrf @php // Grouping questions by heading first, then by question_id $groupedHeadings = $questionsGrouped; @endphp
@php $sl = 1; @endphp @foreach($questionsGrouped as $qs_id => $questionGroup) @php $question = $questionGroup->first(); // Get the first question from the group @endphp @php $sl++ @endphp @endforeach
S.No Question Select
{{ $sl }} {{ $question->question }}
@endsection @push('js') @endpush