প্রধান পরিসংখ্যান
মোট শিক্ষার্থী
{{-- @dd($totalStudents) --}}
{{ number_format($activeStudents) }}
সর্বমোট সংগ্রহ
৳{{ number_format($totalIncome) }}
সর্বমোট খরচ
৳{{ number_format($totalExpense) }}
বর্তমান ব্যালেন্স
৳{{ number_format($currentBalance) }}
মোট শিক্ষক
{{ number_format($totalTeacher) }}
মোট ইনঅ্যাকটিভ শিক্ষার্থী
{{ number_format($inactiveStudents) }}
সকল ফান্ড
@php
$fundTypes = [
1 => 'সাধারণ ফান্ড',
2 => 'গোরাবা ফান্ড',
3 => 'মাহফিল ফান্ড',
4 => 'অন্যান্য ফান্ড',
];
@endphp
@foreach ($fundBalances as $fund)
@if ($fund->funds)
@endif
@endforeach
@switch($fund->funds->fund_type)
@case(1)
@break
@case(2)
@break
@case(3)
@break
@default
@endswitch
{{ $fund->funds->name ?? '' }}
৳{{ number_format($fund->balance ?? 0) }}
{{ $fundTypes[$fund->funds->fund_type] ?? 'অজানা ফান্ড' }}
ড্যাশবোর্ড বিশ্লেষণ
ফান্ড বণ্টন (পাই)
মাসভিত্তিক সংগ্রহ (বার)
মাসভিত্তিক বাকি (বার)
লিঙ্গ অনুপাত (পাই)
সক্রিয় বনাম নিষ্ক্রিয় শিক্ষার্থী
ব্যালেন্স অনুযায়ী শীর্ষ ৩টি ফান্ড
--}}
{{--
--}}