← Back
{{ strtoupper(substr($other?->name ?? 'U', 0, 1)) }}

{{ $other?->name ?? 'User' }}

{{ $other?->email ?? '' }}

@forelse($messages as $m) @php $mine = $m->sender_id === $me->id; @endphp
@if($m->body)

{{ $m->body }}

@endif @if($m->attachments->count())
@foreach($m->attachments as $a) attachment @endforeach
@endif

{{ $m->created_at?->format('M d, H:i') }}

@empty
No messages yet.
@endforelse
@csrf
@error('body')

{{ $message }}

@enderror
@error('image')

{{ $message }}

@enderror