@php use App\Enums\Calls\OutcomeType; use App\Enums\Calls\RelatedToType; use App\Models\CallStatus; @endphp @push('style') @endpush
Edit Call

Update call details and manage the latest outcome from one place.

Back to Calls
Subject: {{ $call->subject ?? '—' }} Status: {{ str($call->callStatus?->name ?? 'unknown')->replace('_', ' ')->title() }} Related To: {{ $call->relatedTo?->name ?? '—' }}
Change Status

Choose the proper outcome for this call.

@csrf @method('PUT')
Call Details
@csrf @method('PUT') @include('dashboard.calls._form', ['btn_text' => 'Save', 'call' => $call])
@push('script') @endpush