@extends('layouts.app') @section('title', 'Messages') @section('page-title', 'Messages') @section('content')
| Direction | Chat | Type | Content | Status | Device | Time |
|---|---|---|---|---|---|---|
| @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 | ||||||