@include('partials.admin-nav')
@if(session('success'))
{{ session('success') }}
@endif
Temizle

Kayitlar ({{ $questions->total() }})

@forelse($questions as $question)
#{{ $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
@empty

Bu filtrelere uygun soru bulunamadi.

@endforelse
{{ $questions->links() }}

Soru Duzenle

@if($editingQuestion) @php $opts = $editingQuestion->options->keyBy('label'); @endphp
@csrf @method('PATCH')
@if($errors->any())
{{ $errors->first() }}
@endif
@else

Duzenlemek icin yukaridaki listeden bir soru secin.

@endif