Pregunta {{ $i + 1 }}
@if($pregunta->requerida)
*
@endif
{{ $pregunta->texto }}
{{ $pregunta->tipo?->nombre }}
@if($pregunta->tipo?->slug === 'opcion_multiple' && $pregunta->opciones->isNotEmpty())
@foreach($pregunta->opciones as $opcion)
- {{ $opcion->texto }}
@endforeach
@elseif($pregunta->tipo?->slug === 'si_no')
Sí
No
@elseif($pregunta->tipo?->slug === 'escala_5')
@for($k = 1; $k <= 5; $k++)
{{ $k }}
@endfor
/ 5
@elseif($pregunta->tipo?->slug === 'escala_10')
@for($k = 1; $k <= 10; $k++)
{{ $k }}
@endfor
/ 10
@elseif($pregunta->tipo?->slug === 'texto_libre')
— Respuesta abierta —
@endif