@extends('layouts.staff-new') @section('content')

Pending Loans

@forelse($loans as $loan) @empty @endforelse
Reference # Borrower Amount Tenure Loan Status Manage
{{ $loan->reference}} {{ $loan->user->name ?? null}} ₦{{ number_format($loan->amount, 2)}} {{$loan->due_date->diffInMonths($loan->created_at)}} Months ({{$loan->due_date->diffForHumans()}}) @component('components.loan-status', ['loan' => $loan]) @endcomponent View
No pending loans
@endsection @section('page-js') @endsection