@extends('layouts.app') @section('title', 'Chat with ' . ($otherUser->name ?? 'Unknown')) @section('page-title', 'Messages') @section('content')
{{ $otherUser->name ?? 'Unknown' }}
{{ $otherUser->role ?? '' }}@if($otherUser->role === 'parent') @elseif($otherUser->role === 'student') @elseif($otherUser->role === 'teacher') @endif {{ $otherUserInfo }}
@endif{{ $msg->sender->name ?? 'Unknown' }}
@endif{{ $msg->message }}
@if($msg->attachment) Attachment @endif{{ $msg->created_at->format('h:i A') }} ยท {{ $msg->created_at->format('d M') }}
No messages yet. Say hello!