{{ __('Details') }} {{ $this->conversation->isGroup() ? __('Group conversation') : __('Direct conversation') }}
{{ trans_choice(':count message|:count messages', $this->conversation->messages_count, ['count' => $this->conversation->messages_count]) }}
{{ $this->initials() }}
{{ $this->title() }} @if ($this->conversation->description) {{ $this->conversation->description }} @endif
{{ __('Quick actions') }}
{{ __('Participants') }} {{ $this->conversation->participants->count() }}
@foreach ($this->conversation->participants as $participant)
{{ $participant->user->name }}
{{ $participant->user->email }}
@if ($participant->role === \App\Models\ConversationParticipant::RoleAdmin) {{ __('Admin') }} @endif
@endforeach
{{ __('Conversation health') }}
{{ __('Members') }}
{{ $this->conversation->participants->count() }}
{{ __('Messages') }}
{{ $this->conversation->messages_count }}