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