@extends('dashboard.base') @section('action-content')
{{-- ================= KPI SECTION ================= --}}
{{-- Total Deposits --}}

Total Deposits

₵ {{ number_format($todayDeposits ?? 0,2) }}

{{-- Savings Deposits --}}

Savings Deposits

₵ {{ number_format($savingsDeposits ?? 0,2) }}

{{-- Fixed Deposits --}}

Fixed Deposits

₵ {{ number_format($fixedDeposits ?? 0,2) }}

{{-- Kids & Student Deposits --}}

Kids & Student Deposits

₵ {{ number_format($kidsStudent ?? 0,2) }}

{{-- Total Withdrawals --}}
Total Withdrawals

₵ {{ number_format($todayWithdrawals ?? 0,2) }}

{{-- Total Savings Balance --}}
Total Savings Balance

₵ {{ number_format($totalSavings ?? 0,2) }}

{{-- Active Loans --}}
Active Loans

{{ $activeLoans ?? 0 }}

{{-- Active Loans --}}
Shares Deposit

₵ {{ number_format($sharesDeposit ?? 0,2) }}

{{-- Second KPI Row --}} {{-- ================= LOAN PERFORMANCE ================= --}}
Loan Portfolio

₵ {{ number_format($totalLoanPortfolio ?? 0,2) }}

Outstanding Principal

₵ {{ number_format($totalOutstandingPrincipal ?? 0,2) }}

Interest Expected

₵ {{ number_format($totalInterestExpected ?? 0,2) }}

Overdue Loans

₵ {{ number_format($totalOverdueAmount ?? 0,2) }}

{{-- ================= CHARTS SECTION ================= --}}
{{-- Monthly Deposits --}}

Monthly Deposits ({{ now()->year }})

{{-- Monthly Withdrawals --}}

Monthly Withdrawals ({{ now()->year }})

{{-- 30 Days Savings Trend --}}

Last 30 Days Savings Trend

{{-- Loan Performance --}}

Loan Performance

@endsection @section('scripts') @endsection