Order ID : {{$willsAndTest['payment_order_id']}}
| Your Information | |
|---|---|
| Who is this Last Will for? | {{ $willsAndTest['a_status'] ?? 'Not specified' }} |
| What is your marital status? | {{ $willsAndTest['m_status'] ?? 'Not specified' }} |
| Name: | {{ $willsAndTest['full_name'] ?? 'Not specified' }} |
| Street Address1: | {{ $willsAndTest['street_1'] ?? 'Not specified' }} |
| Street Address2: | {{ $willsAndTest['street_2'] ?? 'Not specified' }} |
| City: | {{ $willsAndTest['city'] ?? 'Not specified' }} |
| State: | @php $stateRaw = $willsAndTest['state'] ?? null; $stateValue = (ctype_digit((string) $stateRaw)) ? getState((int) $stateRaw) : ($stateRaw ?: 'Not specified'); @endphp{{ $stateValue }} |
| Country: | {{ isset($willsAndTest['country']) ? getCountry($willsAndTest['country']) : 'Not specified' }} |
| ZIP Code: | {{ $willsAndTest['zip_code'] ?? 'Not specified' }} |
| What is your spouse's name? | {{ $willsAndTest['spouse_name'] ?? 'Not specified' }} |
| Who is the testator's partner? | {{ $willsAndTest['partner_name'] ?? 'Not specified' }} |
| Family | |
| Who are your children? |
@php $children = json_decode($willsAndTest['children'], true); @endphp @if (is_array($children)) @foreach ($children as $child)
|
| Guardian | |
| Guardian Details: |
@php
$guardian = json_decode($willsAndTest['guardian'], true);
$guardian_status = $willsAndTest['guardian_status'] ?? 'no';
$children = json_decode($willsAndTest['children'], true);
$has_dependent = is_array($children) && collect($children)->contains('dependent', 'yes');
@endphp
@if ($guardian_status === 'yes' && $has_dependent && is_array($guardian) && count($guardian) > 0)
@foreach ($guardian as $item)
|
| Who will be the executor? | {{ $willsAndTest['executors'] ?? 'Not specified' }} |
| Who will be the Alternate Executors: | {{ $willsAndTest['alternate_executors'] ?? 'Not specified' }} |
| Pets: | {{ $willsAndTest['pets'] ?? 'Not specified' }} |
| Estate and Gifts | |
| Asset Description: | {{ $willsAndTest['asset_description'] ?? 'Not specified' }} |
| Asset Beneficiary: |
@php $assetBeneficiary = json_decode($willsAndTest['asset_beneficiary'], true); @endphp @if (is_array($assetBeneficiary)) @foreach ($assetBeneficiary as $item)
|
| Do you want your spouse to receive the assets of your estate excluding any specific gifts to others? | @if($willsAndTest['beneficiaries'] == 'spouse') Divided equally among your parents/ sibling @elseif($willsAndTest['beneficiaries'] == 'someone_else') Given to someone else @else Not specified @endif |
| How will the estate be distributed if the testator's beneficiaries pass away first or no longer exist when the testator dies? |
@php $wipeoutBeneficiary = json_decode($willsAndTest['wipeout_beneficiary'], true); @endphp @if (is_array($wipeoutBeneficiary)) @foreach ($wipeoutBeneficiary as $item)
|
| Additional Notes: | {{ $willsAndTest['additional_notes'] ?? 'Not' }} |
| Gift L: | {{ $willsAndTest['gift_l'] ?? 'Not specified' }} |
| Specific Gifts: | {{ $willsAndTest['specific_gifts'] ?? 'Not specified' }} |
| Specific Gifts Details: |
@php $specificGiftsDetails = json_decode($willsAndTest['specific_gifts_details'], true); @endphp @if (is_array($specificGiftsDetails)) @foreach ($specificGiftsDetails as $item)
|
| Inheritance Delay: |
@php $inheritanceDelay = json_decode($willsAndTest['inheritance_delay'], true); @endphp
|
| Executor | |
| Manage Estate Details: |
@php $manageEstateDetails = json_decode($willsAndTest['manage_estate_details'], true); @endphp
|
| Manage Estate: |
@if (is_array($manageEstate))
|
| Manage Estate Executors: |
@if (is_array($manageEstateExecutors))
|
| Backup Executor: |
@php $backupExecutor = json_decode($willsAndTest['backup_executor'], true); @endphp @if (is_array($backupExecutor)) @foreach ($backupExecutor as $item)
|
| Final Details | |
| Pets Status: | {{ $willsAndTest['pets_status'] ?? 'Not specified' }} |
| Pets Details: |
@php $petsDetails = json_decode($willsAndTest['pets_details'], true); @endphp @if (is_array($petsDetails)) @foreach ($petsDetails as $item)
|
| Additional Details: |
@if($willsAndTest['additional_details_status'] == 'yes')
@php
$additionalDetails = json_decode($willsAndTest['additional_details'], true);
@endphp
@if (is_array($additionalDetails))
|
| Created At: | {{ isset($willsAndTest['created_at']) ? date('m/d/Y h:i A', strtotime($willsAndTest['created_at'])) : 'Not specified' }} (EST) |
| Updated At: | {{ isset($willsAndTest['updated_at']) ? date('m/d/Y h:i A', strtotime($willsAndTest['updated_at'])) : 'Not specified' }} (EST) |