@extends('layouts.admin') @section('page_kicker', 'Inbox') @section('page_title', 'Messages') @section('content')

History

Secure threads with your clinicians

@forelse($messages as $msg)

{{ $msg->sender->name ?? 'User' }} → {{ $msg->receiver->name ?? 'User' }}

{{ $msg->message }}

{{ $msg->created_at->format('M j, g:i A') }}

@empty

No messages yet.

@endforelse
{{ $messages->links() }}

Compose

@if($doctorOptions->isEmpty())

After you book or complete a consultation, your clinician appears here.

@else
@csrf
@endif Open full chat app
@endsection