@extends('layouts/microfin_layout') @section('title', '| Product Details') @section('content')
Loan Product Information
Name: {{ $product->name }} Short Name: {{ $product->shortName }}
Loan Product Code: {{ $product->code }} Funding Organization: {{ $productDetails['funOrgName'] }}
Loan Product Category: {{ $productDetails['categoryName'] }} Is Primary Product: {{ $productDetails['isPrimaryProduct'] }}
Start Date: {{ date_format(date_create($product->startDate), 'd-m-Y') }} Is Multiple Loan Allowed: {{ $productDetails['isMultipleLoanAllowed'] }}
Eligible Repayment (In Months): {{ $productDetails['eligibleRepaymentMonths'] }} Number of Installment: 1
Grace Period (Days): {{ $productDetails['gracePeriod'] }}
Loan Product Type: {{ $productDetails['loanProductType'] }} Years to Eligible Write Off: {{ $product->yearsEligibleWriteOff }}
Is Insurance Applicable: {{ $productDetails['isInsuranceApplicable'] }} Insurance Calculation Method: {{ $productDetails['insuranceCalculationMethod'] }}
Minimum Loan Amount: {{ number_format($product->minLoanAmount, 2) }} Maximum Loan Amount: {{ number_format($product->maxLoanAmount, 2) }}
Average Loan Amount: {{ number_format($product->avgLoanAmount, 2) }} Mandatory Savings Percentage(%) of Proposed Loan Amount: {{ $product->mandatorySavingsPercantage.'%' }}
Form Fee: {{ number_format($product->formFee, 2) }} Additional Fee: {{ number_format($product->additionalFee, 2) }}
{{-- delete modal --}} {{-- status change modal --}} {{-- status change notification modal --}} @endsection