@extends('layouts.app') @section('title', 'Lenders OMS | Assign') @section('content')
@include('app.assignorders.index')
@csrf
@foreach($orders as $order) @php $inputData = json_decode($order->input, true); @endphp @endforeach
Sl No Order # Client Service Borrower Name Property Address Status All User
{{ $loop->iteration}} {{ $order->id }} {!! isset($order->clients->client_name) ? $order->clients->client_name : "" !!} {!! isset($order->services->service_name) ? $order->services->service_name : "" !!} {!! isset($inputData['BorrowerInfo']['FirstBorrowerInfo']['first_name']) ? $inputData['BorrowerInfo']['FirstBorrowerInfo']['first_name'] : "" !!} {!! isset($inputData['BorrowerInfo']['FirstBorrowerInfo']['middle_name']) ? ' ' . $inputData['BorrowerInfo']['FirstBorrowerInfo']['middle_name'] : "" !!} {!! isset($inputData['BorrowerInfo']['FirstBorrowerInfo']['last_name']) ? ' ' . $inputData['BorrowerInfo']['FirstBorrowerInfo']['last_name'] : "" !!} {!! isset($inputData['PropertyData']['address']) ? $inputData['PropertyData']['address'] : "" !!} {!! isset($order->statusTypes->status) ? $order->statusTypes->status : "" !!} {!! isset($order->assignedUsers->first_name) ? ucwords($order->assignedUsers->first_name) : '' !!} {!! isset($order->assignedUsers->last_name) ? ' ' . ucwords($order->assignedUsers->last_name) : '' !!}
{{-- Js --}} @endsection