@extends('layouts.admin', ['title' => 'Participant Details'])
{{----}}
@push('stylesheets')
@endpush
@section('content')
{{$participant->first_name}} {{$participant->last_name}}
Edit
Basic Information
- Name
- {{$participant->first_name}} {{$participant->last_name}}
- Contact
- {{$participant->participant_contact}}
- Gender
- {{$participant->gender}}
- Farmer Group
- {{$participant->farmer_group}}
- Participant Code
- {{$participant->participant_code}}
- Participant Type
- {{$participant->participant_type}}
- Date created
- {{$participant->created_at}}
- Date last updated
- {{$participant->updated_at}}
- Approval Status
- {{$participant->status}} {{($participant->status!='approved')?'('.$participant->approval_note.')':''}}
- Creator
- {{($participant->createdBy != null)? $participant->createdBy->name : '*deleted user'}}
- Active Status
- {{$participant->active_status}}
Household Information
- Is household head?
- {{$participant->is_house_hold_head?'Yes':'No'}}
- Household head
- {{$participant->household_head_first_name}} {{$participant->household_head_last_name}}
- Household size
- {{$participant->household_size}}
- Household head relationship
- {{$participant->household_head_relationship}}
- Household head year of birth
- {{$participant->household_head_year_of_birth}}
- Household head occupation
- {{$participant->household_head_occupation}}
- Number of children
- {{($participant->number_of_children)}}
- Children live with you?
- {{($participant->children_live_with_you)?'Yes':'No'}}
- Household details
- {{($participant->household_details)}}
Financial Information
- Employment Status
- {{$participant->employment_status}}
- Enterprise
- {{$participant->enterprise}}
- Main Economic activity
- {{$participant->main_economic_activity}}
- Estimated minimum income
- {{$participant->min_income_range}}
- Estimated maximum income
- {{$participant->max_income_range}}
- Has bank account?
- {{$participant->participant_bank_account?'Yes':'No'}}
- Bank Account Name
- {{$participant->account_name}}
- Bank Account Number
- {{$participant->account_number}}
- Financial Institution
- {{$participant->financial_institution}}
Location Information
- Village
- {{$participant->village}}
- Parish
- {{$participant->parish}}
- Subcounty
- {{$participant->sub_county}}
- District
- {{$participant->district}}
- GPS coordinates
- {{$participant->gps_latitude}},{{$participant->gps_longitude}}
Consent forms
- Signed consent forms?
- {{$participant->has_consent_form?'Yes':'No'}}
@foreach($participant->media as $form)
-
@endforeach
{{--/. row /--}}
@endsection
@push('scripts')
@endpush