@if($conversationImage)
@include('listing::partials.responsive-image', [
'image' => $conversationImage,
'alt' => $conversationListing?->title,
'class' => 'w-full h-full object-cover',
])
@else
Listing
@endif
{{ $partner?->name ?? 'User' }}
{{ $conversation->last_message_at?->format('d.m.Y') }}
{{ $conversationListing?->title ?? 'Listing removed' }}
{{ $lastMessage !== '' ? $lastMessage : 'No messages yet' }}
@if($conversation->unread_count > 0)
{{ $conversation->unread_count }}
@endif