@php use Illuminate\Support\Facades\Storage; use Illuminate\Support\Str; $user = $loan->user; $appName = config('app.name', 'Loan Company'); $sigPath = data_get($loan, 'user.personalInformation.signature') ?? data_get($loan, 'user.personalInformation.signature_path') ?? data_get($loan, 'user.personalInformation.borrower_signature') ?? data_get($loan, 'user.personalInformation.borrower_signature_path'); $sigUrl = null; if ($sigPath) { $sigUrl = Str::startsWith($sigPath, ['http://', 'https://', 'data:']) ? $sigPath : Storage::url($sigPath); } $monthlyInterest = $loan->interest_rate_annual ? round(((float) $loan->interest_rate_annual / 12), 2) : null; $loanTime = optional($loan->created_at)->format('M d, Y, h:i A'); @endphp
Loan Agreement
| Title | Content |
|---|---|
| Lender: | {{ $appName }} |
| Borrower: | {{ $user->name ?? '-' }} |
| Loan Time: | {{ $loanTime ?? '-' }} |
| Contact Number: | {{ $user->phone ?? '-' }} |
| Loan Amount: | {{ number_format((int) ($loan->requested_amount ?? 0)) }} |
| Loan Installments: | {{ (int) ($loan->term_months ?? 0) }} Months |
| Monthly Interest Rate: | {{ $monthlyInterest !== null ? $monthlyInterest . '%' : '-' }} |
| Payment Date: | 10th of every month |
option A: Automatic deduction by the system on the 10th of every month.
option B: Transfer via electronic banking system; bank & Ewallet
option C: Direct bank transaction & NEFT
{{ $appName }} has mandated savings for loans, requiring clients to accumulate savings to avail loans. And the clients' deposited money will be credited to the wallet along with the loan amount. After repayment of the loan, the accumulated savings will be returned to the clients. The savings deposited by the clients for taking the loan will be recorded in the loan agreement form. The company will be obliged to return the savings to the clients after repayment of the loan.
Borrower has the right to pay back the whole exceptional amount at any time. If Borrower pays before time, or if this loan is refinanced or replaced by a new note, Lender will refund the unearned finance charge, figured by the Rule of 78—a commonly used formula for figuring rebates on installment loans.
Any payment not remunerated within ten (10) days of its due date shall be subject to a belated charge of 2% of the payment, not to exceed BDT 10000 for any such late installment.
To protect Lender, {{ $appName }} is working online different from another bank that's why Party A does not require collateral for this loan. Party A only requires the deposit in advance to verify the repayment ability of customers.
If this note is placed with a legal representative for collection, then Borrower agrees to pay an attorney's fee of fifteen percent (6%) of the voluntary balance. This fee will be added to the unpaid balance of the loan.
If Party B is involved in any kind of illegal activities such as gambling, money laundering, etc., then Party A can take legal action or Party B might pay the full loan amount in advance.
If for any reason Borrower does not succeed in making any payment on time, Borrower shall be in default. The Lender can then order instant payment of the entire remaining unpaid balance of this loan, without giving anyone further notices. If Borrower has not paid the full amount of the loan when the final payment is due, the Lender will charge Borrower interest on the unpaid balance at 6% per year.
If Party B wants to cancel the loan after applying, then Party B is subject to pay 5% of the loan amount for loan cancellation. After cancellation, Party B does not need to pay any loan installment.
If Party B provides wrong bank information or ID information, then Party A should ask for a deposit from Party B 20% of the loan amount to solve this problem. This amount will be refunded to Party B along with the loan amount later.
The signed contract has a strong and valid legal force. All parties, both Party A and Party B, must follow all the rules and conditions contained in the contract agreement. All parties to the contract will strictly carry out their obligations under the credit contract. Both parties are fully responsible for the contents of the agreed contract.
Any co-borrowers signing this agreement agree to be likewise accountable with the borrower for this loan.
Witness my hand and office seal.
| Borrower Signature |
@if($sigUrl)
|
| Lender Signature: |
|