#{{ $question->id }} - {{ $question->subject }} - {{ strtoupper($question->source) }}
@if($question->question_number)
- Soru No: {{ $question->question_number }}
@endif
@if($question->year)
- {{ $question->year }}
@endif
@if($question->exam_field || $question->exam_name)
- {{ $question->exam_field }} {{ $question->exam_name }}
@endif
@if($question->exam_period)
- {{ $question->exam_period }}
@endif
{{ $question->is_active ? 'Aktif' : 'Pasif' }}
Duzenle
{{ Str::limit($question->body, 260) }}
@if($question->related_questions)Iliskili Sorular: {{ $question->related_questions }}
@endif
@foreach($question->options as $option)
{{ $option->label }}) {{ Str::limit($option->body, 80) }}
@endforeach