{{ __('تفاصيل الرسالة') }}

{{ $note->title }}

من: {{ $note->sender->name ?? 'غير معروف' }}
بخصوص الطالب: {{ $note->student->full_name ?? 'غير محدد' }}
{{ $note->created_at->format('Y-m-d h:i A') }}
عودة للقائمة
{!! nl2br(e($note->content)) !!}

إرسال رد

@php $isParent = auth()->user()->role === 'parent'; $formAction = $isParent ? route('parent.messages.store') : route('notes.store'); @endphp
@csrf @if($isParent) {{-- Parents allow specifying recipient explicitly. For a reply, it's the original sender. --}} @endif