{{-- resources/views/admin/participants/individual/show.blade.php --}} @extends('layouts.master') @section('title', 'Individual Participant Details') @section('css') @endsection @section('breadcrumb')

Individual Participants

@endsection @section('main_content')
{{-- PROFILE HEADER --}}
{{-- Left: Picture + Basic Info --}}
{{-- Profile Picture --}}
@if ($participant->profile_picture) Profile Picture @else
{{ strtoupper(substr($participant->first_name_en, 0, 1) . substr($participant->middle_name_en, 0, 1) . substr($participant->last_name_en, 0, 1)) }}
@endif
{{-- Basic Info --}}

{{ $participant->first_name_en }} {{ $participant->middle_name_en }} {{ $participant->last_name_en }}

{{-- Account Status beside Name --}} {{ $participant->status ? ucfirst(strtolower($participant->status->name)) : 'Unknown' }}
{{-- Preferred Name --}}

{{ $participant->preferred_name ?? '-' }}

{{-- Customer ID + Created Date --}}

Customer ID: #{{ $participant->id }} Created: {{ $participant->created_at->format('M d, Y') }}

{{-- Tags --}}
{{ ucfirst($participant->gender) }} {{ ucfirst($participant->marital_status) }}
{{-- Contact Info --}}
{{ $participant->primary_email ?? '-' }} {{ $participant->mobile_phone ?? '-' }} {{ optional($participant->country)->name ?? '-' }} flag {{ optional($participant->country)->name ?? '-' }} {{ optional($participant->preferredLanguage)->native_name ?? '-' }}
{{-- Right: Action Buttons --}}
Edit Account
@csrf @method('PATCH')
{{-- TABS NAVIGATION --}} {{-- TABS CONTENT --}}
{{-- Dashboard --}}
{{ $participant->first_name_en }} {{ $participant->middle_name_en }} {{ $participant->last_name_en }} Summary KPIs

Contribution Balance

Br 18,450

+19.01%

ACTIVE POLICIES

3

+19.01%

Coverage Amount

250,000 Birr

+19.01%

Claims Filed

5

+19.01%

Outstanding Contributions

Br 1,200

+19.01%

Next Payment Due

12 Days

+19.01%
Detailed Analytics
Contribution Over Time 2023 – 2025
Policy Coverage Breakdown Active

Claim Trends 2020 – 2025
Payout vs Contribution

Beneficiary Distribution Active
Risk Assessment Score

Interactive Widgets
Next Payment Countdown
Scheduled Payment
08:35 AM, 11 Mar 2025

--:--:--

Remaining
Auto-debit enabled
Manage Payment
Claim Status Progress
Claim #CLM-2025-0921
Pending
Filed Under Review Approved Paid
Coverage Goal Tracker
{{-- Personal Info --}}
{{-- ACCORDION FOR PERSONAL INFO --}}
Participant Full Name
Identification
Contact
Additional Information
{{-- end Personal Tab --}} {{-- Contact Tab Content --}}
{{-- CONTACT INFO ACCORDION --}}
Primary Contact
Address
Location Map
{{-- end Contact Tab --}} {{-- Policies Tab Pane --}}
{{-- Nested Tabs for Policies Sections --}} {{-- Tab Content --}}
{{-- Overview Card --}}
Policies Overview
📊 Policies Overview
Total Policies

0

Active

0

Pending

0

Expired/Cancelled

0

Sum Assured (ETB)
0
Total Contribution (ETB)
0
{{-- Financial Summary Card --}}
{{-- Financial Overview Chart --}}
Financial Overview
ETB Values
Total Sum Assured
{{ number_format($policies->sum('sum_assured')) }} ETB
Total Contribution
{{ number_format($policies->sum('contribution_amount')) }} ETB
Avg Contribution per Policy
{{ number_format($policies->avg('contribution_amount')) }} ETB
{{-- Policy Status Distribution --}}
Policy Status Distribution
{{-- Upcoming Renewals Card --}}
Upcoming Renewals
    @foreach ($policies->where('end_date', '>=', now())->sortBy('end_date')->take(5) as $policy)
  • {{ $policy->policy_number }} - {{ $participant->first_name_en }} {{ $participant->middle_name_en }} {{ $participant->last_name_en }} {{ $policy->end_date->format('d M Y') }}
  • @endforeach
{{-- Policies Table --}}
All Policies
Add Policy
Loading policies...
# Policy Number Product Coverage Sum Assured Contribution Frequency Start Date End Date Progress Status Actions
{{-- End Policies Table --}} {{-- Policy History Tab --}}
Policy Change History
@foreach ($policy->history ?? [] as $history) @endforeach
# Changed By Field Old Value New Value Date
{{ $loop->iteration }} {{ $history->user->name }} {{ $history->field }} {{ $history->old_value }} {{ $history->new_value }} {{ $history->created_at->format('d M Y H:i') }}
{{-- Analytics / Insights Tab --}}
Premium vs Claims
Policy Status Distribution
Trends & KPIs
{{-- Compliance & Regulations Tab --}}
Compliance Status
    @foreach ($policy->compliance ?? [] as $comp)
  • {{ $comp->check_name }} {{ ucfirst($comp->status) }}
  • @endforeach
Audit Trail
@foreach ($policy->complianceAudits ?? [] as $audit) @endforeach
# User Action Date
{{ $loop->iteration }} {{ $audit->user->name }} {{ $audit->action }} {{ $audit->created_at->format('d M Y H:i') }}
{{-- End Policies Tab --}} {{-- Claims Tabs --}}
Participant Claims Trend Overview
Total Claims

0

+5% from last month
Pending

0

Awaiting review
Approved

0

+12 this week
Rejected

0

-3 this week
Total Claimed Amount

0.00

All claims submitted

Approved Amount

0.00

Claims approved by underwriter

Paid Amount

0.00

Claims actually paid

ID Policy Incident Date Amount Status Updated At Action
Select a claim from the list to view its details.
Underwriting Review
StatusPending
RemarksN/A
ConditionsNone
Approved ByN/A
Approved At
  • Requested: 0.00
  • Approved: 0.00
  • Paid: 0.00

Previous Notes
    Documents
    Activity Logs
    System Info
    {{-- Beneficiaries Tab --}}
    Beneficiaries
    {{-- Risk Assessment Tab --}}
    Risk Assessment
    {{-- Transactions Tab --}}
    Transactions
    {{-- Notes Tab --}}
    Notes / Internal Comments
    {{-- Compliance Tab --}}
    Compliance / KYC
    {{-- Notifications Tab --}}
    Notifications / Alerts
    {{-- Integrations Tab --}}
    Integrations / External Systems
    {{-- Appointment Tab --}} {{-- Appointment Tab Pane --}}
    Events
    Upcoming Events 0
    {{-- KYC Status Content --}}
    KYC Status
    {{-- Bank account info --}}
    Bank Account info
    {{-- Next of Kin Content --}}
    Next of Kin
    @endsection @section('scripts') @section('scripts') {{-- ApexCharts JS --}} @endsection