@extends('student.layouts.app') @section('title', $notification->title) @section('content') @php $isArabic = app()->getLocale() === 'ar'; $creatorName = trim(($notification->creator->first_name ?? '') . ' ' . ($notification->creator->last_name ?? '')); $creatorName = $creatorName !== '' ? $creatorName : ($isArabic ? 'النظام' : 'System'); @endphp
{{ $isArabic ? 'رسالة مباشرة' : 'Direct message' }}

{{ $notification->title }}

{{ $notification->created_at->diffForHumans() }}

{{ $isArabic ? 'الرجوع للإشعارات' : 'Back to notifications' }}

{{ $isArabic ? 'محتوى الإشعار' : 'Notification content' }}

{!! nl2br(e($notification->body)) !!}
@endsection