📊 Weekly Client Digest

{{ $week_start }} to {{ $week_end }}

Hello {{ $account_manager_name }}!

Here's your weekly summary of client activities, outstanding items, and key metrics for your account portfolio.

📈 Portfolio Overview

{{ $total_clients }}

Total Clients

{{ $revenue_summary['this_month_revenue'] }}

This Month Revenue

{{ $revenue_summary['outstanding_balance'] }}

Outstanding Balance

{{ count($pending_follow_ups) }}

Pending Follow-ups

@if(count($overdue_invoices) > 0 || count(array_filter($pending_follow_ups, function($item) { return $item['follow_up_date'] < now()->subDays(3); })) > 0)

🚨 Urgent Items Requiring Attention

@if(count($overdue_invoices) > 0)

Overdue Invoices

@foreach(array_slice($overdue_invoices, 0, 5) as $invoice) @endforeach
Client Invoice # Amount Days Overdue
{{ $invoice['client']['company_name'] ?? 'N/A' }} {{ $invoice['invoice_number'] ?? 'N/A' }} {{ $invoice['currency'] ?? '$' }} {{ number_format($invoice['outstanding_amount'] ?? 0, 2) }} {{ \Carbon\Carbon::parse($invoice['due_date'])->diffInDays(now()) }} days
@endif @php $urgentFollowUps = array_filter($pending_follow_ups, function($item) { return \Carbon\Carbon::parse($item['follow_up_date'])->isPast(); }); @endphp @if(count($urgentFollowUps) > 0)

Overdue Follow-ups

@foreach(array_slice($urgentFollowUps, 0, 3) as $followUp)
{{ $followUp['client']['company_name'] ?? 'N/A' }} - {{ $followUp['title'] ?? 'Follow-up' }}
Due: {{ \Carbon\Carbon::parse($followUp['follow_up_date'])->format('Y-m-d') }} ({{ \Carbon\Carbon::parse($followUp['follow_up_date'])->diffForHumans() }})
@endforeach @endif
@endif @if(count($active_proposals) > 0)

📋 Active Proposals Awaiting Response

@foreach(array_slice($active_proposals, 0, 5) as $proposal) @endforeach
Client Proposal Value Valid Until Status
{{ $proposal['client']['company_name'] ?? 'N/A' }} {{ $proposal['title'] ?? 'N/A' }} {{ $proposal['currency'] ?? '$' }} {{ number_format($proposal['total_amount'] ?? 0, 2) }} {{ \Carbon\Carbon::parse($proposal['valid_until'])->format('Y-m-d') }} @if(\Carbon\Carbon::parse($proposal['valid_until'])->diffInDays(now()) <= 3) Expires Soon @else {{ ucfirst($proposal['status'] ?? 'unknown') }} @endif
@endif

📅 Recent Client Activities

@if(count($recent_activities) > 0) @foreach(array_slice($recent_activities, 0, 8) as $activity)
{{ $activity['client']['company_name'] ?? 'N/A' }} - {{ $activity['title'] ?? 'Activity' }}
{{ \Carbon\Carbon::parse($activity['interaction_date'])->format('M j, Y') }} | {{ ucfirst(str_replace('_', ' ', $activity['interaction_type'] ?? 'unknown')) }} @if($activity['description'])
{{ Str::limit($activity['description'], 100) }} @endif
@endforeach @else

No recent activities recorded this week.

@endif

💰 Financial Summary

{{ $revenue_summary['total_revenue'] }}

Total Portfolio Revenue

{{ $revenue_summary['this_month_revenue'] }}

This Month Revenue

{{ $revenue_summary['outstanding_balance'] }}

Outstanding Balance

✅ Recommended Actions for This Week

    @if(count($overdue_invoices) > 0)
  • Follow up on {{ count($overdue_invoices) }} overdue invoice(s) - Priority: High
  • @endif @if(count($urgentFollowUps ?? []) > 0)
  • Complete {{ count($urgentFollowUps ?? []) }} overdue follow-up(s) - Priority: High
  • @endif @if(count($active_proposals) > 0)
  • Check status of {{ count($active_proposals) }} active proposal(s) - Consider follow-up calls
  • @endif
  • Review client satisfaction and identify upselling opportunities
  • Schedule regular check-ins with key accounts
  • Update client records with recent interactions

💡 Pro Tip of the Week

Regular proactive communication with clients increases satisfaction by 40% and reduces churn by 25%. Consider scheduling monthly check-ins with your top accounts.

This digest was automatically generated for the week of {{ $week_start }} to {{ $week_end }}. The data includes all activities, proposals, invoices, and interactions for clients under your management.

Need help with any of these items? Don't hesitate to reach out to the team for support with client management, proposal follow-ups, or collection assistance.

Keep up the excellent work managing your client portfolio!

Best regards,
Client Management System