@extends('adminlte::page') @section('title', 'Communications') @section('content_header')
| Subject | Recipient Type | Status | Priority | Created By | Sent At | Actions |
|---|---|---|---|---|---|---|
|
{{ Str::limit($communication->subject, 40) }}
|
{{ ucfirst(str_replace('_', ' ', $communication->recipient_type)) }} | @if($communication->status === 'sent') Sent @elseif($communication->status === 'scheduled') Scheduled @else Draft @endif | @if($communication->priority === 'urgent') Urgent @elseif($communication->priority === 'high') High @elseif($communication->priority === 'normal') Normal @else Low @endif | {{ Str::limit($communication->creator->full_name ?? 'Unknown', 15) }} | @if($communication->sent_at) {{ $communication->sent_at->format('d M H:i') }} @else - @endif | |
No Communications FoundStart by creating your first communication to members. Create First Communication |
||||||