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

{{ $thread->subject }}

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

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

{{ $message->body }}

@endforeach
@csrf
@endsection