Order ID : {{$livingWillForm['payment_order_id']}}
| Field | Value |
|---|---|
| ID: | {{ $livingWillForm['id'] }} |
| Do you want to appoint someone to make your health care decisions if you are unable to? | {{ $livingWillForm['health_care_decisions'] }} |
| Do you want to list your health care preferences so caregivers have instructions to follow? | {{ $livingWillForm['preferences'] }} |
| Location | |
| What state do you live in? | {{ $livingWillForm['live_state'] }} |
| Care Choices | |
| Care Choices: Sustaining Treatment | @if($livingWillForm['sustaining_treatment'] == 'yes') I want to receive this treatment @else I do NOT want to receive this treatment @endif |
| Artificially Provided Food and Water | @if($livingWillForm['artificially_food'] == 'yes') I want to receive this treatment @else I do NOT want to receive this treatment @endif |
| Care if Permanently Unconscious: Life Sustaining Treatment | @if($livingWillForm['p_sustaining_treatment'] == 'yes') I want to receive this treatment @else I do NOT want to receive this treatment @endif |
| Care if Permanently Unconscious: Artificially Provided Food and Water | @if($livingWillForm['p_artificially_food'] == 'yes') I want to receive this treatment @else I do NOT want to receive this treatment @endif |
| Your Info | |
| Who is this Living Will being created for? |
@php $yourInfo = json_decode($livingWillForm['your_information'], true); @endphp
|
| Proxy | |
| If I need someone to speak for me |
@php $proxy = json_decode($livingWillForm['proxy'], true); @endphp
|
| Alternate Health Care Proxy |
@php $alternateProxy = json_decode($livingWillForm['alternate_proxy'], true); @endphp
|
| How much authority do you want your health care proxy to have? | {{ $livingWillForm['proxy_authority'] }} |
| Instructions for Health Care Proxy: Have access to my medical records | @if(!empty($livingWillForm['medical_records'])) yes @else No @endif |
| Instructions for Health Care Proxy: Decide if I need tube feeding | @if(!empty($livingWillForm['tube_feeding'])) Yes @else No @endif |
| Final Details | |
| Contacts |
@php $contacts = json_decode($livingWillForm['contacts'], true); @endphp @if (is_array($contacts)) @foreach ($contacts as $contact)
|
| Signing Details |
@php $signingDetails = json_decode($livingWillForm['signing_details'], true); @endphp
|
| Created At: | {{ isset($livingWillForm['created_at']) ? date('m/d/Y h:i A', strtotime($livingWillForm['created_at'])) : 'Not specified' }} (EST) |
| Updated At: | {{ isset($livingWillForm['updated_at']) ? date('m/d/Y h:i A', strtotime($livingWillForm['updated_at'])) : 'Not specified' }} (EST) |