@extends('layouts.master') @section('page_title', 'My Dashboard') @section('content') @if (Qs::userIsTeamSA())

{{ $users->where('user_type', 'student')->count() }}

Total Students

{{ $users->where('user_type', 'teacher')->count() }}

Total Teachers

{{ $users->where('user_type', 'admin')->count() }}

Total Administrators

{{ $users->where('user_type', 'parent')->count() }}

Total Parents
@endif @if (Qs::userIsTeamSA())

GHS {{ number_format($amountPaid + $debt, 2) }}

Total Expected Amout

GHS {{ number_format($amountPaid, 2) }}

Total Amount Paid

GHS {{ number_format($debt, 2) }}

Total Debt
@endif {{-- Events Calendar Begins --}}
School Events Calendar
{!! Qs::getPanelOptions() !!}
{{-- Events Calendar Ends --}} @endsection