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

Available Loan Requests

@forelse($loanRequests as $loanRequest) @empty @endforelse
Reference Owner Request Duration Current EMI Date Created Assigned Action
{{ $loanRequest->reference }} {{ $loanRequest->user->name }} ₦ {{$loanRequest->amount}} at {{$loanRequest->interest_percentage}}% Interest {{$loanRequest->duration}} {{ str_plural('Month', $loanRequest->duration) }} ₦ {{number_format($loanRequest->emi(), 2)}} {{$loanRequest->created_at->format('Y-m-d')}} @if($investor = $loanRequest->investor) Assigned: {{ $investor->reference }} @else Not Assigned @endif View
Data Unavailable
@endsection @section('page-js') @endsection