From 4201f92476abebdf15bfbd6380d6732664706fa9 Mon Sep 17 00:00:00 2001 From: mirivlad Date: Fri, 27 Mar 2026 16:40:18 +0800 Subject: [PATCH] =?UTF-8?q?Feat:=20=D0=9C=D0=BE=D0=B4=D0=B0=D0=BB=D1=8C?= =?UTF-8?q?=D0=BD=D0=BE=D0=B5=20=D0=BE=D0=BA=D0=BD=D0=BE=20=D0=BF=D1=80?= =?UTF-8?q?=D0=B5=D0=B4=D0=BF=D1=80=D0=BE=D1=81=D0=BC=D0=BE=D1=82=D1=80?= =?UTF-8?q?=D0=B0=20=D0=B2=D0=BE=D0=BF=D1=80=D0=BE=D1=81=D0=BE=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ✅ Клик на текст вопроса открывает modal ✅ Отображение текста вопроса с HTML форматированием ✅ multiple_choice: radio/checkbox в зависимости от кол-ва правильных ✅ matching: таблица с парами ✅ ordering: нумерованный список в правильном порядке ✅ Картинки + текст в ответах Co-authored-by: Qwen-Coder --- .../views/admin/questions/index.blade.php | 88 ++++++++++++++++++- 1 file changed, 87 insertions(+), 1 deletion(-) diff --git a/resources/views/admin/questions/index.blade.php b/resources/views/admin/questions/index.blade.php index d31c560..a746205 100644 --- a/resources/views/admin/questions/index.blade.php +++ b/resources/views/admin/questions/index.blade.php @@ -32,7 +32,16 @@ @elseif($question->type === 'ordering') @endif - {{ strip_tags($question->question_text) }} + + + {{ Str::limit(strip_tags($question->question_text), 100) }} + +
{{ $question->answers->count() }} ответов@if($question->matchingPairs->count() > 0), {{ $question->matchingPairs->count() }} пар@endif @if($question->is_required) Обязательный@endif @@ -54,4 +63,81 @@
+ + + + + @endsection