ID
{{ $pourOverWillForm['id'] }}
Will your Last Will be used with a Living Trust?
{{ $pourOverWillForm['with_trust'] }}
Children
{{-- {{ $pourOverWillForm['children'] ?? 'Not specified' }} --}}
@php
$pchildrens = json_decode($pourOverWillForm['children'], true);
@endphp
@if (is_array($pchildrens))
@foreach ($pchildrens as $pchildren)
Child {{$loop->iteration}}
Name: {{ $pchildren['name'] ?? 'Not specified' }}
Dependent: {{ $pchildren['dependent'] ?? 'Not specified' }}
@endforeach
@else
Who are the your children?
{{ $pourOverWillForm['children'] ?? 'No' }}
@endif
Guardian
@php
$guardian = json_decode($pourOverWillForm['guardian'], true);
$guardian_status = $pourOverWillForm['guardian_status'] ?? 'no';
$children = json_decode($pourOverWillForm['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 $index => $item)
{{ $index + 1 }}. Guardian
Name
{{ $item['name'] ?? 'Not specified' }}
Country
{{ $item['country_name'] ?? 'Not specified' }}
State
{{ $item['state_name'] ?? 'Not specified' }}
@endforeach
@else
Guardian Details
Not specified
@endif
Gifts
@php
$gift = json_decode($pourOverWillForm['gift'], true);
@endphp
@if (is_array($gift))
Do you want to leave any specific gifts
in your Pour-Over Will?
@foreach ($gift as $item)
Type
{{ $item['type'] ?? 'Not specified' }}
@if(!empty($item['name']))
Name
{{ $item['name'] ?? 'Not specified' }}
@endif
@if(!empty($item['city']))
City
{{ $item['city'] ?? 'Not specified' }}
@endif
@if(!empty($item['state']))
State
{{ $item['state_name'] ?? 'Not specified' }}
@endif
@if(!empty($item['country']))
Country
{{ $item['country_name'] ?? 'Not specified' }}
@endif
@if(!empty($item['charity_name']))
Charity Name
{{ $item['charity_name'] ?? 'Not specified' }}
@endif
@if(!empty($item['charity_registration']))
Charity Registration
{{ $item['charity_registration'] ?? 'Not specified' }}
@endif
@if(!empty($item['charity_city']))
Charity City
{{ $item['charity_city'] ?? 'Not specified' }}
@endif
@if(!empty($item['charity_state']))
Charity State
{{ $item['charity_state_name'] ?? 'Not specified' }}
@endif
@if(!empty($item['charity_country']))
Charity Country
{{ $item['charity_country_name'] ?? 'Not specified' }}
@endif
@if(!empty($item['describe_gift']))
Describe Gift
{{ $item['describe_gift'] ?? 'Not specified' }}
@endif
@if(!empty($item['alternate_name']))
Alternate Name
{{ $item['alternate_name'] ?? 'Not specified' }}
@endif
@if(!empty($item['alternate_city']))
Alternate City
{{ $item['alternate_city'] ?? 'Not specified' }}
@endif
@if(!empty($item['alternate_state']))
Alternate State
{{ $item['alternate_state_name'] ?? 'Not specified' }}
@endif
@if(!empty($item['alternate_country']))
Alternate Country
{{ $item['alternate_country_name'] ?? 'Not specified' }}
@endif
@endforeach
@else
Do you want to leave any specific gifts
in your Pour-Over Will?
{{ 'Not specified' }}
@endif
Trust Details
Trust Name
{{ $pourOverWillForm['trust_name'] ?? 'Not specified' }}
Signing Date
{{ $pourOverWillForm['signing_date'] ? date('m/d/Y ', strtotime($pourOverWillForm['signing_date'])) : 'Not specified' }}
Who is this Pour-Over Will being created for?
Name
{{ $pourOverWillForm['full_name'] ?? 'Not specified' }}
Street Address1
{{ $pourOverWillForm['street_1'] ?? 'Not specified' }}
Street Address2
{{ $pourOverWillForm['street_2'] ?? 'Not specified' }}
City
{{ $pourOverWillForm['city'] ?? 'Not specified' }}
State
{{ $pourOverWillForm['state_name'] ?? 'Not specified' }}
Country
{{ $pourOverWillForm['country_name'] ?? 'Not specified' }}
ZIP Code
{{ $pourOverWillForm['zip_code'] ?? 'Not specified' }}
@php
$executors = json_decode($pourOverWillForm['executors'], true);
@endphp
@if (is_array($executors))
Executor
@foreach ($executors as $executor)
Name
{{ $executor['name'] ?? 'Not specified' }}
City
{{ $executor['city'] ?? 'Not specified' }}
State
{{ $executor['state_name'] ?? 'Not specified' }}
Country
{{ $executor['country_name'] ?? 'Not specified' }}
@endforeach
@else
Executor
{{ 'Not specified' }}
@endif
@php
$alternateExecutors = json_decode($pourOverWillForm['alternate_executors'], true);
@endphp
@if (is_array($alternateExecutors))
Alternate Executors
@foreach ($alternateExecutors as $alternateExecutor)
Name
{{ $alternateExecutor['name'] ?? 'Not specified' }}
City
{{ $alternateExecutor['city'] ?? 'Not specified' }}
State
{{ $alternateExecutor['state_name'] ?? 'Not specified' }}
Country
{{ $alternateExecutor['country_name'] ?? 'Not specified' }}
@endforeach
@else
Alternate Executors
{{ 'Not specified' }}
@endif
Final Details
Additional Details
{{--
{{ $pourOverWillForm['additional_details'] ?? 'Not specified' }} --}}
@php
$detailsadditional = $pourOverWillForm['additional_details'] ?? '';
$decoded = json_decode($detailsadditional, true);
@endphp
@if(is_array($decoded))
@foreach($decoded as $item)
- {{ $item['additional_note'] ?? '—' }}
@endforeach
@elseif(!empty($detailsadditional))
{{ $detailsadditional }} {{-- show raw string if not valid JSON --}}
@else
No
@endif
Signing Details
@php
$signingDetails = json_decode($pourOverWillForm['signing_details'], true);
@endphp
@if(isset($signingDetails['type']) && $signingDetails['type'] == "Specific Date")
Type
{{ $signingDetails['type'] ?? 'Not specified' }}
Date
{{ $signingDetails['specific_date'] ? date('m/d/Y ', strtotime($signingDetails['specific_date'])) : 'Not specified' }}
City
{{ $signingDetails['unsure_city'] ?? 'Not specified' }}
@else
Type
{{ $signingDetails['type'] ?? 'Not specified' }}
Unsure City
{{ $signingDetails['unsure_city'] ?? 'Not specified' }}
@endif
Created At
{{ isset($pourOverWillForm['created_at']) ? date('m/d/Y h:i A', strtotime($pourOverWillForm['created_at'])) : 'Not specified' }} (EST)
Updated At
{{ isset($pourOverWillForm['updated_at']) ? date('m/d/Y h:i A', strtotime($pourOverWillForm['updated_at'])) : 'Not specified' }} (EST)