@extends('layouts.admin', ['heading' => 'Internal Messaging', 'subheading' => 'Broadcast and direct communication']) @section('content')
Send Message
@csrf
Message Log
@forelse($messages as $msg) @empty @endforelse
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.
{{ $messages->links() }}
@endsection