@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 Frequency: {{ $productDetails['eligibleRepaymentFrequency'] }} Number of Installment: {{ $productDetails['installments'] }}
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) }}
@if ($baseRatioConfigCount > 0) @endif @foreach ($interestRates as $interestRate) @php if($baseRatioConfigCount > 0){ $baseRatio = $interestRate->baseRatioPerThousand == 0 ? '-' : $interestRate->baseRatioPerThousand; } @endphp @if ($baseRatioConfigCount > 0) @endif @endforeach
Repayment Frequency Installment Number Interest Cal. Method Interest Percentage (%) Interest IndexBase Ratio Per Thousand Action
{{ $repaymentFrequencies->where('id', $interestRate->repaymentFrequencyId)->max('name') }} {{ $interestRate->installmentNum }} {{ $interestCalMethods->where('id', $interestRate->interestCalculationMethodId)->max('name') }} {{ $interestRate->interestRate. '(%)' }} {{ $interestRate->interestRateIndex }}{{number_format((float)$baseRatio,2)}} id }} ">
{{-- delete modal --}} {{-- status change modal --}} {{-- status change notification modal --}} @endsection