@if ($selected && $target) {{-- New Red Branding Header --}}

{{ $target->forename }} {{ $target->surname }}

@if($target->profile && $target->profile->company)

{{ $target->profile->company }}

@endif
{{-- Chat Message Area --}}
@if ($chats->count() > 0) @foreach($chats as $chat) @php $isMe = $chat->from->id === auth()->user()->id; @endphp
{!! nl2br(e($chat->message)) !!}
{{-- Timestamp instead of Avatar --}}
{{ $chat->created_at->format('H:i') }}
@endforeach @else

No messages yet

@endif
@else

Select a user from your connections to start chatting

@endif
@if ($selected)
@endif @if ($users->count() > 0)
Recent Connections
@endif