@extends('layouts.app-sidebar') @section('content')

Message Logs

Chat messages for {{ $tenant->channel_title }}

Back to Admin

Chat Messages

All chat messages from {{ $tenant->channel_title }}

@forelse($messages as $message) @empty @endforelse
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

@if($messages->hasPages())
{{ $messages->links() }}
@endif
@endsection