Total Branches:
{{ $branches->count() }}
Total Members:
{{ $branches->sum('users_count') }}
Report Date:
{{ date('Y-m-d H:i:s') }}
Generated By:
{{ auth()->user()->full_name ?? 'System' }}
Summary Statistics
Average Members per Branch:
{{ $branches->count() > 0 ? round($branches->sum('users_count') / $branches->count(), 1) : 0 }}
Largest Branch:
{{ $branches->sortByDesc('users_count')->first()->name ?? 'N/A' }} ({{ $branches->max('users_count') }} members)
Newest Branch:
{{ $branches->sortByDesc('created_at')->first()->name ?? 'N/A' }}