@extends('layouts.staff-new') @section('content')
Information about the borrower
@php($user = $loan->user)Name: {{ $user->name }}
ID: {{ $user->reference }}
Bank Name: {{ optional($user->bank)->bank_name ?? 'N/A'}}
Account Number: {{ optional($user->bank)->account_number ?? 'N/A'}}
Pay Roll ID: {{optional($user->employments->first())->payroll_id ?? 'N/A'}}
User uploaded documents will show up here
No documents available
@endif @if($loan->status == 2) Loan Fulfillment Doc @endifActions you can perform on the loan at each stage shows up here
S/N | @if ($staff->manages('repayments'))Buffer Status | @endifTotal Amount | Collected Date | Amount Paid | Due Date | Payment Proof | Payment Method | Status | @if ($staff->manages('approve_repayment'))Action | @endif|
---|---|---|---|---|---|---|---|---|---|---|
{{$i}} | @if ($staff->manages('repayments')){{number_format($plan->totalAmount,2)}} | {{$plan->date_paid}} | @if($plan->status == 1) {{number_format($plan->paid_amount,2)}} @endif | {{$plan->payday}} | @if($plan->payment_proof)View | @elseNo proof | @endif@if($staff->manages('approve_repayment') && $plan->status == 0) @if(!$plan->collection_mode) @else {{$plan->collection_mode}} @endif @else {{$plan->collection_mode}} @endif | @if($plan->status) Paid @else Not Paid @endif | @if ($staff->manages('approve_repayment'))@if($plan->status == true) @else @endif | @endif
# | Total Amount | Due Date Back Date Post Date |
Balance | Collected Date | Payment Proof | Payment Method | Status | |
---|---|---|---|---|---|---|---|---|
{{$loop->iteration}} | ₦{{ number_format($plan->totalAmount, 2)}} | {{$plan->payday}} {{-- --}} | @if($loop->iteration === $loan->loanRequest->duration) ₦0.00 @else ₦{{ number_format($plan->balance, 2) }} @endif | {{$plan->date_paid}} | @if($plan->payment_proof)View | @elseNo proof | @endif@if($staff->manages('approve_repayment') && $plan->status == 0) @if(!$plan->collection_mode) @else {{$plan->collection_mode}} @endif @else {{$plan->collection_mode}} @endif | @if($plan->status) Paid @else Not Paid @endif |
Repayments not found |