@extends('layouts.app-sidebar') @section('content')
Chat messages for {{ $tenant->channel_title }}
All chat messages from {{ $tenant->channel_title }}
| Time | Author | Message | Type |
|---|---|---|---|
| {{ $message->created_at->format('M d, H:i:s') }} |
{{ $message->author_name }} {{ Str::limit($message->author_channel_id, 20) }} |
{{ $message->text }} |
@if($message->direction === 'outbound') Outbound @else Inbound @endif |
|
No messages found |
|||