{{ $totalCalls }}
Total Calls Logged
{{ $happyCalls }}
Satisfied / Happy
{{ $sadCalls }}
Concerned / Sad
{{ $angryCalls }}
Frustrated / Angry
{{ $totalTodosCount }}
Actionable To-Dos
Date-wise Client Call Logs
Review date-wise meeting transcripts, click client expressions to inspect emotional drivers, and export MoMs & To-Do lists in .txt format.
📞
No Call Logs Recorded Yet
Once client calls are held, full AI transcription, MoM, and To-Do lists will be logged here date-wise.
📅 {{ \Carbon\Carbon::parse($dateKey)->format('F j, Y') }}
{{ $notes->count() }} {{ $notes->count() === 1 ? 'call' : 'calls' }}
@foreach($notes as $note)
@php
$sentiment = strtolower($note->detected_sentiment ?? 'neutral');
$badgeClass = match($sentiment) {
'happy' => 'emotion-happy',
'sad' => 'emotion-sad',
'angry' => 'emotion-angry',
default => 'emotion-neutral',
};
$sentimentEmoji = match($sentiment) {
'happy' => '😊 Happy',
'sad' => '😟 Concerned',
'angry' => '😡 Frustrated',
default => '😐 Neutral',
};
$todoCount = count($note->todo_items ?? $note->action_items ?? []);
@endphp
{{ $note->meeting->title ?? 'Client Call' }}
{{ $note->client->project_name ?? 'Project' }}
{{ $note->summary ?? 'Meeting concluded with milestone alignment.' }}