@extends('schoolLayout.app') @section('content')

School Dashboard

Download PDF

Student Applications

Accepted: {{ $accept ?? 'N/A' }}

Rejected: {{ $reject ?? 'N/A' }}

Pending: {{ $pending ?? 'N/A' }}

Applications

Students Overview

🟢 Active: {{ $totalStudents ?? 'N/A' }}

🟠 Alumni: {{ $totalAlumni ?? 'N/A' }}

Students Overview

Other Income

{{ number_format(-($totalOtherIncome ?? 0.0), 2) }}

Other Income

Income

{{ number_format(-($incomeFromStd ?? 0.0), 2) }}

Income

Cash in Hand

{{ number_format($cashInHandBalance ?? 0.0, 2) }}

Cash in Hand

Student Dues

{{ number_format($studentDue ?? 0.0, 2) }}

Student Dues

Expense

{{ number_format($totalExpense ?? 0.0, 2) }}

Expense

Salary Expense

{{ number_format($totalSalaryExpense ?? 0.0, 2) }}

Expense

Payable

{{ number_format(-($payable ?? 0.0), 2) }}

Payable
@foreach ($stdCountClass as $item)

{{ $item->name ?? 'N/A' }}

Active Students: {{ $item->active_count ?? 'N/A' }}

@endforeach
@foreach ($positions as $position)

{{ ucfirst($position->title ?? 'N/A') }}

Active: {{ $position->active_count ?? 'N/A' }}

@endforeach
@endsection