@extends('adminLayout::index')
@section('pageContent')
{{ __('admin/chats.show_desc') }}
@if($chatData->type->isDirect())
@else
@endif
@if($chatData->type->isDirect())
{{ __('table.labels.participants') }}
@if($chatData->participants->count())
@else
{{ __('admin/chats.no_participants') }}
@endif
@endif
{{ __('table.labels.type') }}
{{ $chatData->type->label() }} {{ $chatData->type->emoji() }}
{{ __('table.labels.last_activity') }}
@if($chatData->last_activity)
{{ $chatData->last_activity->getFormatted() }}
@else
{{ __('labels.never') }}
@endif
#HASH
{{ $chatData->chat_id }}
#ID
{{ $chatData->id }}
{{ __('table.labels.created_at') }}
{{ $chatData->created_at->getFormatted() }}
@endsection