@extends('layouts.versions.vertical-light') @section('title') عرض السؤال @endsection @section('css') @endsection @section('content')
{{ $question->title['ar'] ?? 'غير محدد' }}
{{ $question->title['en'] ?? 'غير محدد' }}
{{ $question->description }}
@if($question->target_type == 'client') طلاب @elseif($question->target_type == 'provider') معلمين @else كلاهما @endif
@if($question->is_active) نشط @else غير نشط @endif
{{ $question->created_at->format('Y-m-d H:i:s') }}
{{ $question->updated_at->format('Y-m-d H:i:s') }}
| # | المستخدم | النوع | الإجابة | النص المخصص | التاريخ |
|---|---|---|---|---|---|
| {{ $response->id }} | {{ $response->getRespondentName() }} | {{ $response->getRespondentType() }} | @if($response->answer) {{ $response->answer->title['ar'] ?? $response->answer->title['en'] ?? '' }} @else لا توجد @endif | @if($response->custom_answer) {{ Str::limit($response->custom_answer, 50) }} @else لا يوجد @endif | {{ $response->created_at->format('Y-m-d H:i') }} |