@extends('layouts.app') @section('title', 'Middleware | legalVestingForm') @section('content') @include('app.certforms.certStyle') @if (isset($order->output)) @endif {{-- show history modal --}} @php $output = json_decode($order->output); @endphp
@if(in_array($order->status, [4, 5, 6, 10, 11, 12]))
Status: {{$orderData['status_type']}}
Reason:   {!! $statusHistory[count($statusHistory) - 1]->comments !!}
@endif
{{-- Show Attachment --}} {{--Show Attachments end --}}
{{-- PDF --}} @if(isset($order->output))
@foreach ($supportingdocs as $index => $linked_pdf) @if ($index % 3 === 0) @if ($index > 0) @endif @endif @endforeach
{{$linked_pdf->pdf_file}}
@endif {{-- --}}
@if(isset($order->output))
@endif
Order Type: {{ $orderData['service_name'] }} Status: {{ $orderData['status_type'] }}
@if(isset($order->output))
Order Information
{{-- --}}
Property Address
{!! str_ireplace(' ', ' ',$output->legal_vesting_data->OrderInformation->property_address) ?? '' !!}
File Order No
Product Name
Borrower Names
City
State
County
Search Information
Search Date
Effective Date
Name Searched
Address/Parcel Searched

Assessment Information
Comments
{!! str_ireplace(' ', ' ',$output->legal_vesting_data->AssessmentInformation->comments) ?? '' !!}

Current Owner Vesting
Current Owner Info
{!! str_ireplace(' ', ' ',$output->legal_vesting_data->CurrentOwnerVesting->current_ov) ?? '' !!}
Comments
{!! str_ireplace(' ', ' ',$output->legal_vesting_data->CurrentOwnerVesting->comments) ?? '' !!}

Vesting Deed
Deed Type
Dated Date
Instrument No
Recorded Date
Grantor
Grantee
Book Page
Comments
{!! str_ireplace(' ', ' ',$output->legal_vesting_data->VestingDeed->comments) ?? '' !!}

For Preamble
City/Township/Parish

Additional Notes
{!! str_ireplace(' ', ' ',$output->legal_vesting_data->AdditionalNotes) ?? '' !!}
Legal Description
{{--ETA info --}}
Other Info
@csrf
@foreach ($statusHistory as $history) @if($history->status_id == 4 || $history->status_id == 12) @endif
User:{!! ucfirst($history->first_name) !!} {!! ucfirst($history->last_name) !!} Status: {{$history->status}} Follow Up: {!! isset($history->followup_date) ? date("m/d/Y", strtotime($history->followup_date)) : "" !!} ETA: {!! isset($history->eta_date) ? date("m/d/Y", strtotime($history->eta_date)) : "" !!} Date: {!! isset($history->updated_at) ? date("m/d/Y h:i:s A", strtotime($history->updated_at)) : "" !!}
{!! $history->comments !!}

@endforeach

{{-- Supporting Docs --}}
Supporting Docs
Select All PDF's
    @foreach ($supportingdocs as $linked_pdf) @if(!str_starts_with($linked_pdf->pdf_file, "Certificate"))
  • {{$linked_pdf->pdf_file}}   @if(str_starts_with($linked_pdf->pdf_file, "Merged_Certificate")) @else @endif
  • @endif @endforeach
@foreach ($supportingdocs as $linked_pdf) @if (str_starts_with($linked_pdf->pdf_file, "Merged")) @endif @endforeach
@csrf
{{-- End supporting Docs --}}
@else
Order Information
{{-- --}}
Property Address
File Order No
Product Name
Borrower Names
City
State
County
Search Information
Search Date
Effective Date
Name Searched
Address/Parcel Searched

Assessment Information
Comments

Current Owner Vesting
Current Owner Info
Comments

Vesting Deed
Deed Type
Dated Date
Instrument No
Recorded Date
Grantor
Grantee
Book Page
Comments

For Preamble
City/Township/Parish

Additional Notes
Legal Description
@endif
@endsection