{{ __('Add participants') }}
{{ __('Current participants') }}
@forelse($conversation->users as $user) @empty @endforelse
{{ __('Name') }} {{ __('Role') }} {{ __('Joined') }} {{ __('Actions') }}
{{ substr($user->firstname, 0, 1) }}{{ substr($user->lastname, 0, 1) }}
{{ $user->firstname }} {{ $user->lastname }}
{{ $user->email }}
@if($user->pivot->is_manager) @else @endif {{ $user->pivot->created_at?->format('d/m/Y H:i') }}
@if($conversation->canUserManageParticipants() && $user->id !== auth()->id()) @if($conversation->users->count() > 2) @endif @endif
{{ __('No participants found') }}