@php $layout = auth()->user()->role === 'super_admin' ? 'layouts.admin' : 'component2.layouts.app'; @endphp @extends($layout) @section('title', $weof->name . ' – WEOF') @section('content')

{{ $weof->name }}

Edit Beneficiary
WEOF ID

{{ $weof->woef_id }}

Business
{{ $weof->business_name }}
Revenue (SSP)

{{ number_format($weof->monthly_revenue, 2) }}

Participation
{{ $weof->participation_label }}
@if($weof->is_gbv_vulnerable)
GBV Risk: This beneficiary is flagged as vulnerable @if(in_array($weof->marital_status, ['widowed', 'divorced'])) ({{ ucfirst($weof->marital_status) }})@endif @if($weof->resident_status == 'idp') (IDP)@endif @if($weof->resident_status == 'returnee') (Returnee)@endif
@endif
Personal Information
Age {{ $weof->age }}
Marital Status {{ ucwords(str_replace('_', ' ', $weof->marital_status)) }}
Resident Status {{ ucfirst($weof->resident_status) }}
Education {{ ucwords(str_replace('_', ' ', $weof->education)) }}
Phone {{ $weof->phone_no ?: '—' }}
Location {{ $weof->county }} / {{ $weof->payam }}
Group @if($weof->group) {{ $weof->group->name }} @else — @endif
Business Details
Name {{ $weof->business_name }}
Category {{ $weof->business_category }}
Type {{ ucfirst($weof->business_type) }}
Established {{ $weof->establishment_year }}
Registered {{ $weof->registration_status ? 'Yes' : 'No' }}
Target Customers {{ $weof->target_customers }}
Employment Growth
Before Program

{{ $weof->employees_before_male }}

Male

{{ $weof->employees_before_female }}

Female
Now

{{ $weof->employees_now_male }}

Male

{{ $weof->employees_now_female }}

Female
+{{ $weof->total_employees_now - $weof->total_employees_before }} jobs created
Financing Sources
@foreach(['equity' => 'Equity', 'loan' => 'Loan', 'debt' => 'Debt', 'grant' => 'Grant'] as $key => $label)

{{ $label }}

@endforeach
Training Completed ({{ $weof->training_completed_count }}/5)
@foreach([ 'functional_literacy' => 'Functional Literacy', 'vsla_ops' => 'VSLA Operations', 'business_dev' => 'Business Dev', 'digital_literacy' => 'Digital Literacy', 'specialized' => 'Specialized' ] as $key => $label)

{{ $label }}

@endforeach
Grant Disbursement
1st Tranche SSP {{ number_format($weof->grant_1st_tranche ?? 0, 2) }}
2nd Tranche SSP {{ number_format($weof->grant_2nd_tranche ?? 0, 2) }}
Total SSP {{ number_format(($weof->grant_1st_tranche ?? 0) + ($weof->grant_2nd_tranche ?? 0), 2) }}
Accelerator & Validation
@if($weof->accelerator_participation) @endif
Accelerator Participation {{ $weof->accelerator_participation ? 'Yes' : 'No' }}
Graduated {{ $weof->accelerator_graduation ? 'Yes' : 'No' }}
Onsite Validation {{ $weof->onsite_validation ? 'Yes' : 'No' }}
WEOF Connect {{ $weof->participation_woef_connect ? 'Yes' : 'No' }}
@endsection @push('styles') @endpush