@extends('backend.admin-withouterrmaster') @section('site-title') {{__('Dashboard')}} @endsection @section('content')

Personal Loan /Personal Loan Enquiry Detail

@php $city = DB::table('master_city')->where('city_id', $details->city)->get('city_name'); $city_name = json_decode(json_encode($city),true); $state = DB::table('master_state')->where('state_id', $details->state)->get('state_name'); $state_name = json_decode(json_encode($state),true); @endphp
Title Details
Enquiry Code {{ $details->enquiry_code }}
Type of Loan {{ $details->type_of_loan }}
Name {{ $details->full_name }}
Email Id {{ $details->email }}
Contact No. {{ $details->contact_no }}
Address{{ @$details->address }}, {{ @$city_name[0]['city_name'] }} {{ @$state_name[0]['state_name'] }}
Loan Amount Required Rs {{ $details->loan_amount }}
Photos File : @php($count=1) @foreach($photo as $key => $dc ) Photo {{ $count }} | @php($count++) @endforeach
KYC Details
{{-- --}}
KYC Details :
Title Details
Aadhar Card Front File : @if($aadhar_card_front) {{ $aadhar_card_front->document }} @endif
Aadhar Card Back File : @if($aadhar_card_back) {{ $aadhar_card_back->document }} @endif
PAN Card Front File : @if($pan_card_front) {{ $pan_card_front->document }} @endif
Address Proof File : @if($address_proof) {{ $address_proof->document }} @endif
Documents Required
Documents Required :
Title Details
PAN Card File : @if(isset($pan_card->document)) @endif
Aadhar Card File : @if(isset($aadhar_card->document)) @endif
Bank Statement File : @if(isset($bank_statement_new->document)) @endif
3 months Salary Slip File : @php($count=1) @foreach($salery_slip as $key => $dc ) Doc {{ $count }} | @php($count++) @endforeach
Form 16/IT Returns File : @php($count=1) @foreach($form_16_itr as $key => $dc ) Doc {{ $count }} | @php($count++) @endforeach
ID Proof File : @if($id_proof) {{ $id_proof->document }} @endif
Company Details
Company Details :
Title Details
Company Name {{ $details->company_name }}
Company Email Id {{ $details->company_email }}
Company contact No. {{ $details->company_contact }}
Company Website {{ $details->company_website }}
Time period of company existence and individual's vintage in that company {{ $details->time_period_of_company }}
Witness Details
Witness Details :
Title Details
Witness 1 Name {{ $details->guarantor_name_1 }}
Witness 1 Email Id {{ $details->guarantor_email_1 }}
Witness 1 Contact No. {{ $details->guarantor_contact_no_1 }}
Witness 2 Name {{ $details->guarantor_name_2 }}
Witness 2 Email Id {{ $details->guarantor_email_2 }}
Witness 2 Contact No. {{ $details->guarantor_contact_no_2 }}
@endsection