@extends('layouts.main_dashboard.app') @section('title', app()->getLocale() === 'ar' ? 'محادثة خاصة' : 'Private Thread') @section('skip_page_hero', true) @php($isArabic = app()->getLocale() === 'ar') @section('content')

{{ $thread->subject }}

{{ $thread->participantUser?->name ?? '—' }}{{ $thread->student?->name ? ' • ' . $thread->student->name : '' }}

@foreach($thread->messages as $message)

{{ $message->sender?->name ?? '—' }}

{{ $message->body }}

{{ $message->created_at?->translatedFormat('Y/m/d h:i A') ?? '—' }}

@endforeach
@csrf
@endsection