@extends('loans.base') @section('action-content')

Pending Loans

@foreach($loans as $loan) @endforeach
Loan # Client Amount Interest % Tenor (months) Created By Actions
{{ $loan->loan_number }} {{ $loan->client->surname }} {{ $loan->client->othernames }} {{ number_format($loan->amount,2) }} {{ $loan->interest_rate }} {{ $loan->tenor_months }} {{ $loan->creator->name }}
@endsection