@if($message)
{{$message->instructor_name}}
{{date('d.m.Y', strtotime($message->created_at))}}
{{$message->title}}

{{$message->message}}

@if($message->message_file) تنزيل الصوره @else @endif
@if($user->id == $message->user_id) @endif
@else
لا توجد رسائل
@endif @if(count($replies)) @foreach($replies as $reply)
{{$reply->instructor_name}}
{{date('d.m.Y', strtotime($reply->created_at))}}
{{$reply->title ?? $message->title}}

{{$reply->message}}

@if($reply->message_file) تنزيل الصوره @else @endif
@if($user->id == $reply->user_id) @endif
@endforeach @endif