@extends('member.layout') @section('title', '') @section('content')

Welcome back, {{ auth()->user()->first_name }}

Your financial dashboard • {{ now()->format('F Y') }}

{{ auth()->user()->membership->membership_number ?? 'N/A' }}
Member ID
{{ auth()->user()->branch->name ?? 'N/A' }}
Branch
Total Savings
KSh {{ number_format($totalSavings, 0) }}
@if($savingsGrowth > 0) +{{ number_format($savingsGrowth, 1) }}% this month @elseif($savingsGrowth < 0) {{ number_format($savingsGrowth, 1) }}% this month @else No change this month @endif
Active Loans
KSh {{ number_format($totalLoans, 0) }}
{{ $activeLoans }} active loan{{ $activeLoans !== 1 ? 's' : '' }}
Share Value
KSh {{ number_format($totalShares, 0) }}
{{ number_format($totalSharesCount) }} share{{ $totalSharesCount !== 1 ? 's' : '' }} owned
Money Market
KSh {{ number_format($totalMoneyMarket, 0) }}
Fixed-term investments
Net Position
KSh {{ number_format(abs($totalSavings + $totalShares + $totalMoneyMarket - $totalLoans), 0) }}
{{ ($totalSavings + $totalShares + $totalMoneyMarket - $totalLoans) >= 0 ? 'Positive' : 'Negative' }} balance

Quick Actions

Apply for Loan

Get financing for your needs

Apply Now
Open Savings

Start building your savings

Open Account
Update Profile

Manage your information

Update Now
Money Market

Fixed-term investments

View Investments
Investment Calculator

Plan your investments

Calculate
@endsection