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

Select the tab or question to print

Back
@php $i = 0; @endphp @if (isset($tabs)) @foreach ($tabs as $key => $tab) @php $div_show = $i == 0 ? 'show' : ''; @endphp @if (isset($tab->tabQuestion) && count($tab->tabQuestion) > 0)
@foreach ($tab->tabQuestion as $qkey => $question) @if ($question->status)
@endif @if ($question->triggeredQuestion && !empty($question->triggeredQuestion)) @foreach ($question->triggeredQuestion as $tqkey => $tquestion) @if ($tquestion->status)
@endif @endforeach @endif @endforeach
@endif @endforeach @endif @php $i++; @endphp
@endsection