@extends('adminlte::page') @section('title', 'Edit Communication') @section('content_header')

Edit Communication

View Back
@stop @section('content')

Edit Communication Details

@csrf @method('PUT')
@error('case_id') {{ $message }} @enderror
@error('communication_type') {{ $message }} @enderror
@error('direction') {{ $message }} @enderror
@error('priority') {{ $message }} @enderror
@error('subject') {{ $message }} @enderror
@error('content') {{ $message }} @enderror
Select participants for meetings or internal messages
@error('duration') {{ $message }} @enderror

Communication Info

Created: {{ $communication->created_at->format('M j, Y g:i A') }}
Last Updated: {{ $communication->updated_at->format('M j, Y g:i A') }}
Created By: {{ $communication->user->name ?? 'Unknown' }}
@if($communication->replies->count() > 0) Replies: {{ $communication->replies->count() }}
@endif @if($communication->parent) Reply To: {{ $communication->parent->subject }}
@endif
@if($communication->case)

Case Information

Case Number: {{ $communication->case->case_number }}
Title: {{ $communication->case->title }}
Status: {{ ucfirst($communication->case->status) }}
@if($communication->case->client) Client: {{ $communication->case->client->display_name }} @endif
View Case
@endif

Quick Tips

  • Type: Determines how this communication is categorized
  • Direction: Inbound (received), Outbound (sent), Internal (team)
  • Priority: Helps organize and filter communications
  • Participants: Required for meetings and internal messages
@stop @section('css') @stop @section('js') @stop