@extends('adminlte::page') @section('title', 'View Occupation') @section('content')
Occupation Details
ID
{{ $occupation->id }}
Name
{{ $occupation->name }}
Description
{{ $occupation->description ?: 'No description provided' }}
Sort Order
{{ $occupation->sort_order }}
Status
{{ $occupation->is_active ? 'Active' : 'Inactive' }}
Created At
{{ $occupation->created_at->format('d M Y H:i') }}
Updated At
{{ $occupation->updated_at->format('d M Y H:i') }}

Usage Statistics
Members Using This Occupation {{ \App\Models\Membership::where('occupation', $occupation->name)->count() }}
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 }}%
@endsection Powered by Zillah Technologies LTD @endsection @stop