@extends('layouts.main_dashboard.app') @section('title', app()->getLocale() === 'ar' ? 'رسائل الدعم' : 'Support Messages') @section('skip_page_hero', true) @php($isArabic = app()->getLocale() === 'ar') @section('content')
@if($threads->count() > 0) @foreach($threads as $thread)

{{ $thread->subject }}

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

@endforeach @else
{{ $isArabic ? 'لا توجد رسائل خاصة.' : 'No private messages.' }}
@endif
{{ $threads->links('pagination::simple-tailwind') }}
@endsection