{{ __('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') }}
{{ $this->isMuted() ? __('Muted') : __('Mute') }} {{ $this->isPinned() ? __('Pinned') : __('Pin') }}
{{ __('Files') }} @if ((int) $this->conversation->files_count > 0) {{ $this->conversation->files_count }} @endif
{{ __('Participants') }} {{ $this->conversation->participants->count() }}
@if ($this->canAddMembers()) {{ __('Add') }} @endif
@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 }}
{{ __('Files') }}
{{ $this->conversation->files_count }}
{{ __('Add people') }} @if ($this->conversation->isGroup()) {{ __('Invite more teammates into this group conversation.') }} @else {{ __('Adding people will turn this direct chat into a group conversation.') }} @endif
@unless ($this->conversation->isGroup()) @endunless
@error('selectedMemberIds') {{ $message }} @enderror @if ($this->selectedMembers->isNotEmpty())
@foreach ($this->selectedMembers as $member) @endforeach
@endif
@forelse ($this->availableUsers as $candidate) @empty
{{ __('No people available') }} {{ __('Everyone matching your search is already in this conversation.') }}
@endforelse
{{ __('Cancel') }} {{ __('Add selected') }}
{{ __('Conversation files') }} {{ __('Recent files shared in this conversation.') }}
{{ trans_choice(':count file|:count files', $this->conversation->files_count, ['count' => $this->conversation->files_count]) }}
@forelse ($this->files as $file) {{ $file->attachmentName() }} {{ $file->formattedAttachmentSize() }} · {{ $file->sender?->name ?? __('Deleted user') }} · {{ $file->created_at->format('M j, H:i') }} @empty
{{ __('No files shared yet') }} {{ __('Files you send in the composer will appear here for quick access.') }}
@endforelse
{{ __('Close') }}