@if ($activeConversation) @php $listing = $activeConversation->listing; @endphp
@if ($listing)
@include('usermessaging::user.partials.inbox-listing-card', ['listing' => $listing])
@endif
@foreach ($messages as $message) @php $isMine = (int) $message->sender_id === (int) $currentUserId; @endphp

{!! conversation_message_display($message->body) !!}

@endforeach
@csrf
@else

{{ __('translate.Select a conversation') }}

{{ __('translate.Select a conversation hint') }}

@endif