Make Loan Payment

Loan Information

Loan ID

{{ substr($loan->loan_uuid, 0, 8) }}...

Outstanding Balance

${{ number_format($outstandingBalance, 2) }}

@if($nextPayment)

Next Payment Due

Due Date

{{ \Carbon\Carbon::parse($nextPayment['due_date'])->format('M d, Y') }}

{{ \Carbon\Carbon::parse($nextPayment['due_date'])->diffForHumans() }}

Amount Due

${{ number_format($nextPayment['amount'], 2) }}

Breakdown

Principal: ${{ number_format($nextPayment['principal'], 2) }}

Interest: ${{ number_format($nextPayment['interest'], 2) }}

@endif
@csrf
@if($nextPayment) @endif

Payment Summary

Payment Amount ${{ $nextPayment ? number_format($nextPayment['amount'], 2) : '0.00' }}
Outstanding After Payment ${{ $nextPayment ? number_format($outstandingBalance - $nextPayment['amount'], 2) : number_format($outstandingBalance, 2) }}
New Outstanding Balance ${{ $nextPayment ? number_format($outstandingBalance - $nextPayment['amount'], 2) : number_format($outstandingBalance, 2) }}
@if ($errors->has('error'))

{{ $errors->first('error') }}

@endif
Cancel
@push('scripts') @endpush