@extends('layouts.app') @section('title', 'Messages') @section('page-title', 'Messages') @section('content')
Reset
@forelse($messages as $msg) @empty @endforelse
DirectionChatTypeContentStatusDeviceTime
@if($msg->direction === 'outgoing') @else @endif {{ $msg->chat_jid }} {{ $msg->type }} {{ Str::limit($msg->content, 50) }} @php $colors = ['pending'=>'warning','sent'=>'success','delivered'=>'primary','read'=>'info','failed'=>'danger']; @endphp {{ $msg->status }} {{ $msg->device?->name ?? '-' }} {{ $msg->created_at->diffForHumans() }}
No messages found
{{ $messages->appends(request()->query())->links() }}
@endsection