@php $name = 'q_'.$q->id; @endphp
@if($q->question_type === 'text')
@endif
@if($q->question_type === 'scale')
@php
$min = (int)($q->config['scale_min'] ?? 1);
$max = (int)($q->config['scale_max'] ?? 5);
$left = $q->config['scale_left_label'] ?? 'ضعيف';
$right = $q->config['scale_right_label'] ?? 'ممتاز';
@endphp
{{ $left }}
{{ $right }}
@endif
@if($q->question_type === 'single')
@foreach($q->options as $o)
@if(!$o->is_active) @continue @endif
@endforeach
@endif
@if($q->question_type === 'multi')
@foreach($q->options as $o)
@if(!$o->is_active) @continue @endif
@endforeach
@endif