@extends('dashboard.master') @section('title', 'ড্যাশবোর্ড') @push('css') @endpush @section('content')
{{-- Desktop Image --}} {{-- Mobile Image --}}
@php $site = DB::table('settings')->first(); @endphp
{{ $site->long_name ?? 'বেফাকুল মাদারিস মাদ্রাসা ম্যানেজমেন্ট সফটওয়্যার' }}
বিঃদ্রঃ নামাজের সময় এবং শুক্রবার সাপোর্ট অফ থাকবে
যোগাযোগ :
01804909500
সাপোর্টের সময়: প্রতিদিন সকাল ১০টা থেকে সন্ধ্যা ৭টা পর্যন্ত
নির্দিষ্ট সময়ের বাইরে ইমার্জেন্সি সাপোর্ট প্রয়োজন হলে হোয়াটসঅ্যাপে মেসেজ করুন। অনুগ্রহপূর্বক কল দেওয়া থেকে বিরত থাকুন। ধন্যবাদ।
প্রধান পরিসংখ্যান
মোট শিক্ষার্থী
{{-- @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)
@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] ?? 'অজানা ফান্ড' }}
@endif @endforeach
ড্যাশবোর্ড বিশ্লেষণ
ফান্ড বণ্টন (পাই)
মাসভিত্তিক সংগ্রহ (বার)
মাসভিত্তিক বাকি (বার)
লিঙ্গ অনুপাত (পাই)
সক্রিয় বনাম নিষ্ক্রিয় শিক্ষার্থী
ব্যালেন্স অনুযায়ী শীর্ষ ৩টি ফান্ড
@endsection @push('js') @endpush