Percentage of Total Members
@php
$totalMembers = \App\Models\Membership::count();
$occupationCount = \App\Models\Membership::where('occupation', $occupation->name)->count();
$percentage = $totalMembers > 0 ? round(($occupationCount / $totalMembers) * 100, 1) : 0;
@endphp
{{ $percentage }}%