@if (session('language') === 'alb')
{{ $question->alb_title }}
@else
{{ $question->title }}
@endif
@php
$options = is_string($question->options) ? json_decode($question->options, true) : $question->options;
@endphp
@if(is_array($options))
@foreach($options as $option)
@endforeach
@else
No options available for this question.
@endif
@endforeach