@extends('layouts.app') @section('title', 'Call Detail') @section('page-title', 'Call Detail') @section('topbar-actions') Back @endsection @section('content')
{{ $call->customer->phone_number }}
| Product | {{ $call->customer->product_name }} |
| Feedback | @if($call->customer->feedback) {{ ucfirst($call->customer->feedback) }} @else — @endif |
| Answer | {{ $call->customer->feedback_text }} |
| Status | @php $sc = match($call->status) { 'completed' => 'completed', 'failed', 'no-answer' => 'failed', default => 'calling' }; @endphp {{ ucfirst($call->status) }} |
| Sentiment | @if($call->sentiment) {{ ucfirst($call->sentiment) }} @else — @endif |
| Duration | {{ $call->formatted_duration }} |
| Date | {{ $call->created_at->format('d M Y, h:i A') }} |
| Call ID |
{{ $call->call_id ?? '—' }}
|
{{ $call->summary }}