<?php if(isset($group->headerText)): ?>
    <blockquote><?php echo $group->headerText; ?></blockquote>
<?php endif; ?>
<?php foreach($group->questions as $question): ?>
    <?php if(isset($question->headerText)): ?>
        <blockquote><?php echo $question->headerText; ?></blockquote>
    <?php endif; ?>
    <div class="panel panel-info">
        <div class="panel-heading"><b>Domanda n&deg; <?php echo $counter++; ?></b></div>
        <div class="panel-body">
            <?php echo $__env->make('test.result.questions',array("question"=>$question), array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
            <?php if(isset($question->questions)): ?>
                <?php foreach($question->questions as $answer_questions): ?>
                    <?php echo $__env->make('test.result.questions',array("question"=>$answer_questions), array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
                <?php endforeach; ?>
            <?php endif; ?>
        </div>
    </div>
<?php endforeach; ?>
<script>
    $(function () {
        $('#tabRes a').click(function (e) {
            e.preventDefault()
            document.location.href=$(this).attr("href");
        })
    })
</script>