@foreach ($response_data as $data)
@php
$value = '';
if ($data['answer']) {
if ($data['template'] === 'linear-scale') {
$options = $data['options'];
$min_label = !empty($options['min']['label']) ? ": {$options['min']['label']}" : '';
$max_label = !empty($options['max']['label']) ? ": {$options['max']['label']}" : '';
$range = "(Between {$options['min']['value']}{$min_label} and {$options['max']['value']}{$max_label})";
$value = "Rating of {$data['answer']} {$range}";
} else {
$value = $data['answer'];
}
} else {
$value = 'NIL';
}
@endphp
{!! $value !!}
@endforeach