@extends('layouts.superadmin') @section('title','جلسة سقراط #'.$session->id) @section('content')
{{-- HERO --}}
تفاصيل جلسة سقراط • عرض الإجابات + Meta

جلسة #{{ $session->id }} — {{ $session->user_name }}

{{ $session->user_email }} • {{ $metaLine }}

{{ $session->context_type }} @if($session->context_id) • #{{ $session->context_id }} @endif Level: L{{ $session->level }} {{ strtoupper($session->status) }}
رجوع @if($session->status === 'open')
@csrf
@else
@csrf
@endif
@if(session('success'))
{{ session('success') }}
@endif @if($missingRequired->count())
أسئلة إلزامية ناقصة
    @foreach($missingRequired as $q)
  • {{ $q->question_text }}
  • @endforeach
@endif {{-- META --}}

تفاصيل الحدث (Meta)

وين/متى/نوع الحالة/late_minutes…

Context Trace
@if($meta)
@foreach($meta as $k => $v)
{{ $k }}
@if(is_array($v))
{{ json_encode($v, JSON_UNESCAPED_UNICODE|JSON_PRETTY_PRINT) }}
@else {{ $v }} @endif
@endforeach
@else
لا يوجد Meta مخزّن لهذه الجلسة.
@endif
{{-- ANSWERS --}}

الإجابات

نفس البيانات — تصميم أوضح ومهيّب.

@forelse($answers as $a)
Q#{{ $a->question_id }} • L{{ $a->question_level }} @if((int)$a->is_required === 1) إلزامي @endif {{ $a->created_at }}
{{ $a->question_text }}
{{ $a->answer }}
@empty
لا توجد إجابات داخل هذه الجلسة.
@endforelse
@endsection