@if(session('success'))
{{ session('success') }}
@endif
📁
{{ $totalClients }}
Total Client Accounts
📞
{{ $totalMeetings }}
Total Meetings Logged
🚀
{{ $activeProjectsCount ?? $totalClients }}
Active Projects

Client Projects & Meeting Hub

Select any client project to inspect date-wise previous call details, AI meeting transcripts, expressions, and actionable tasks.

@if($clients->isEmpty())
💼

No Client Projects Found

Get started by registering your first client and project profile.

@else
@foreach($clients as $client) @php $meetingsCount = $client->meetings->count(); $latestNote = $client->callNotes->first(); @endphp
{{ $client->project_name }}
{{ $client->client_name }} {{ $client->company_name ? "• " . $client->company_name : "" }}
Client Email: {{ $client->client_email }}
Responsible Lead: {{ $client->responsibleUser->name ?? 'Unassigned' }}
Total Calls: {{ $meetingsCount }} {{ $meetingsCount === 1 ? 'call' : 'calls' }}
@if($latestNote)
Last Call Date: {{ $latestNote->created_at->format('M d, Y') }}
@endif
@endforeach
@endif