@extends('layouts.main_dashboard.app') @section('title', app()->getLocale() === 'ar' ? 'رسائل الأخصائي' : 'Counselor Messages') @section('skip_page_hero', true) @php($isArabic = app()->getLocale() === 'ar') @section('content')
@foreach($threads as $thread)

{{ $thread->subject }}

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

@endforeach
{{ $threads->links('pagination::simple-tailwind') }}
@endsection