@extends('layouts.frontend-master') @section('title', 'Apply Loan') @section('content')
@if (!empty(auth()->user())) @php $member = auth()->user()->member ?? 0; $loan = \App\Models\Loan::where('member_id', $member->id ?? 0) // ->where('is_member_information_completed', 0) ->onlyTrashed() ->orderBy('id', 'desc') ->first(); @endphp

Loan Amount: {{ $settings_->where('key', 'currency')->first()->value ?? '' }} [[formatNumber(initAmount)]]

{{ $settings_->where('key', 'currency')->first()->value ?? '' }} 20,000.00

{{ $settings_->where('key', 'currency')->first()->value ?? '' }} 2,000,000

Please choose a monthly payment options.


Payment option within [[activeMonth]] months.

Interest Rate
[[interest_rate]] %

Interest Amount
{{ $settings_->where('key', 'currency')->first()->value ?? '' }} [[formatNumber(interestPerMonth)]]   = (Loan: [[formatNumber(initAmount)]] x [[interest_rate]]%)

Monthly Repayment Amount
{{ $settings_->where('key', 'currency')->first()->value ?? '' }} [[formatNumber(initAmount/activeMonth)]] = (Loan: [[formatNumber(initAmount)]] ÷ [[activeMonth]] months)

Total Installment Amount
{{ $settings_->where('key', 'currency')->first()->value ?? '' }} [[formatNumber(repayment)]] = ([[formatNumber(initAmount/activeMonth)]] + [[formatNumber(interestPerMonth)]])


Lucky Box:
- 1,000 ZAR-10,000 ZAR
- IPhone 16 Promax
- RENAULT SANDERO 2025


How to Participate:
To qualify for the bonus, simply register and click to select a box. The offer will be sent directly to the borrower’s bank account immediately.

Good luck!


@endif @if (empty(auth()->user()))

Loan Amount: {{ $settings_->where('key', 'currency')->first()->value ?? '' }} [[formatNumber(initAmount)]]

{{ $settings_->where('key', 'currency')->first()->value ?? '' }} 20,000.00

{{ $settings_->where('key', 'currency')->first()->value ?? '' }} 2,000,000

Please choose a monthly payment option.


Payment option within 6 months.

Interest Rate
[[interest_rate]] %

Interest Amount
{{ $settings_->where('key', 'currency')->first()->value ?? '' }} [[formatNumber(interestPerMonth)]]   = (Loan: [[formatNumber(initAmount)]] x [[interest_rate]]%)

Monthly Repayment Amount
{{ $settings_->where('key', 'currency')->first()->value ?? '' }} [[formatNumber(repayment)]] = (Loan: [[formatNumber(initAmount)]] ÷ [[activeMonth]] months)

Total Installment Amount
{{ $settings_->where('key', 'currency')->first()->value ?? '' }} [[formatNumber(initAmount)]] = ([[formatNumber(repayment)]] + [[formatNumber(interestPerMonth)]])

APPLY NOW
@endif
@endsection @push('script') @endpush @push('styles') @endpush