@livewireStyles
@svg('logo',"h-36 w-36")

Gestion des questionnaires

@if(isset($surveys)) @foreach($surveys as $key => $survey) {{--Item--}} @if(count($survey->questions) > 0)
Questions @svg('icon-fontawesome.svgs.solid.angle-down','ml-2 inline-block fill-current h6 w-6 hover:text-fuchsia-500')
    @foreach($survey->questions as $index => $question) @php $editable = count($question->answers) === 0; @endphp @livewire('edit-question-component', ['questionId' => $question->id, 'surveyId' => $survey->id, 'index' => $index, 'editable' => $editable ] ) @endforeach
@endif {{--End item--}} @endforeach @endif
@include('footer')
@livewireScripts