Order ID : {{$pourOverWillForm['payment_order_id']}}
| Will your Last Will be used with a Living Trust? | {{ $pourOverWillForm['with_trust'] }} | |
| Children | ||
| Who are your children? |
@php $pchildrens = json_decode($pourOverWillForm['children'], true); @endphp @if (is_array($pchildrens))
@foreach ($pchildrens as $pchildren)
|
|
| Guardian | ||
| Guardian Details: |
@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 $item)
|
|
| Gifts | ||
| Do you want to leave any specific gifts in your Pour-Over Will? |
@php $gift = json_decode($pourOverWillForm['gift'], true); @endphp @if (is_array($gift)) @foreach ($gift as $item)
|
|
| Trust Details | ||
| Trust Name: | {{ $pourOverWillForm['trust_name'] ?? 'Not specified' }} | |
| Signing Date: | {{ $pourOverWillForm['signing_date'] ?? 'Not specified' }} | |
| Who is this Pour-Over Will being created for? |
|
|
| Executor | ||
| Executors: |
@php $executors = json_decode($pourOverWillForm['executors'], true); @endphp @if (is_array($executors)) @foreach ($executors as $executor)
|
|
| Alternate Executors: |
@php $alternateExecutors = json_decode($pourOverWillForm['alternate_executors'], true); @endphp @if (is_array($alternateExecutors)) @foreach ($alternateExecutors as $alternateExecutor)
|
|
| Final Details | ||
| Additional Details: | {{--{{ $pourOverWillForm['additional_details'] ?? 'No' }} | --}} @php $detailsadditional = $pourOverWillForm['additional_details'] ?? ''; $decoded = json_decode($detailsadditional, true); @endphp
@if(is_array($decoded))
|
| Signing Details: |
@php $signingDetails = json_decode($pourOverWillForm['signing_details'], true); @endphp
|
|
| 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) | |