@extends('layouts.admin') @section('title', 'Chat Details - ' . ($chat->name ?? 'Chat')) @section('content')
View and manage chat messages
{{ ucfirst($chat->type) }}
{{ $chat->is_active ? 'Active' : 'Inactive' }}
{{ $chat->messages_count ?? 0 }}
| User | Joined | Last Read | |
|---|---|---|---|
| {{ $participant->first_name }} {{ $participant->last_name }} | {{ $participant->email }} | @if($participant->pivot && $participant->pivot->joined_at) @if(is_string($participant->pivot->joined_at)) {{ \Carbon\Carbon::parse($participant->pivot->joined_at)->format('M d, Y H:i') }} @else {{ $participant->pivot->joined_at->format('M d, Y H:i') }} @endif @else N/A @endif | @if($participant->pivot && $participant->pivot->last_read_at) @if(is_string($participant->pivot->last_read_at)) {{ \Carbon\Carbon::parse($participant->pivot->last_read_at)->diffForHumans() }} @else {{ $participant->pivot->last_read_at->diffForHumans() }} @endif @else Never @endif |
| No participants | |||
{{ $message->content }}
Type: {{ ucfirst($message->message_type) }}No messages in this chat