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

New Communication

Back
@stop @section('content')

Communication Details

@csrf
@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
@if($selectedCase)

Case Information

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

Communication Types

  • Email: External email communications
  • Phone: Phone call records
  • Meeting: Meeting notes and records
  • Note: Internal notes and memos
  • Letter: Formal correspondence
  • Message: Internal team messages
  • WhatsApp: External WhatsApp messages via Wablast
@stop @section('css') @stop @section('js') @stop