@extends('layouts.app') @section('title', 'Inventory Management') @section('content') @use('App\Enums\AdminRoles')

Defaulters

Manage all loan activities across the platform

Total Defaulters

{{ $totalDefaulters }}

Total Defaulter Amount

N{{ number_format($totalDefaulterAmount, 2) }}

Loan Due This Week

{{ $dueThisWeek }}

Loan Due Last Week

{{ $dueLastWeek }}

@include('admin.loanMgt.partials.filter-option') @include('admin.loanMgt.partials.nav')
@forelse ($defaultLoans as $key => $defaultLoan) @empty @endforelse
SN Borrower Name Phone Number Loan Type Branch Loan Amount Due Amount Due Date Action
{{ ++$key }} {{ $defaultLoan->user->fullname }} {{ $defaultLoan->user->phone }} {{ $defaultLoan->loan->loanApplication->loan_type }} {{ $defaultLoan->user?->branch?->name }} {{ number_format($defaultLoan->loan->principal_amount, 2) }} {{ number_format($defaultLoan->amount_due, 2) }} {{ $defaultLoan->due_date?->format('d,M Y H:iA') }}
No record
@endsection