Morio Sacco

Occupations Report

Generated on {{ date('d M Y H:i:s') }}

Report Summary

{{ $occupations->count() }}
Total Occupations
{{ $occupations->where('is_active', true)->count() }}
Active Occupations
{{ $occupations->sum('memberships_count') }}
Total Members
Report Details: This report shows all occupations with their member counts and details.
@foreach($occupations as $occupation) @endforeach
ID Occupation Name Description Members Sort Order Status Created Date Usage %
{{ $occupation->id }} {{ $occupation->name }} {{ $occupation->description ?: 'No description provided' }} {{ $occupation->memberships_count }} {{ $occupation->sort_order }} {{ $occupation->is_active ? 'Active' : 'Inactive' }} {{ $occupation->created_at->format('d M Y') }} @php $totalMembers = $occupations->sum('memberships_count'); $percentage = $totalMembers > 0 ? round(($occupation->memberships_count / $totalMembers) * 100, 1) : 0; @endphp {{ $percentage }}%