@extends('layouts.admin', ['heading' => 'Internal Messaging', 'subheading' => 'Broadcast and direct communication']) @section('content')
| Channel | Sender | Receiver | Subject | Message | Time |
|---|---|---|---|---|---|
| {{ strtoupper($msg->channel) }} | {{ $msg->sender_id ?: 'System' }} | {{ $msg->receiver_id ?: 'Broadcast' }} | {{ $msg->subject ?: '-' }} | {{ \Illuminate\Support\Str::limit($msg->message, 80) }} | {{ optional($msg->created_at)->format('d M Y H:i') }} |
| No messages. | |||||