@props([
'groupName' => '',
'conversations' => [],
'selectedConversationId' => null,
'showGroupTitle' => true,
'privacyLevel' => null
])
@if($conversations->count() > 0)
@if($showGroupTitle && !empty($groupName))
@endif
@foreach($conversations as $conversation)
@include('livewire.chats.partials.conversation-item', [
'conversation' => $conversation,
'selectedConversationId' => $selectedConversationId
])
@endforeach
@if($showGroupTitle && !empty($groupName))
@endif
@endif