@extends('layouts.app') @section('title', 'Statistik Akademik - SIAKAD') @section('page-title', 'Statistik Akademik') @section('content') @php $totalMahasiswaAktif = \App\Models\Mahasiswa::where('status', 'aktif')->count(); $totalDosen = \App\Models\Dosen::where('is_active', 1)->count(); @endphp
Analisis data akademik dan performa mahasiswa
Mahasiswa Aktif
Dosen Aktif
IPK Tertinggi
Top 10 Mahasiswa
| Prodi | Mhs | Avg IPK |
|---|---|---|
| {{ $stat->prodi }} | {{ $stat->total_mahasiswa ?? 0 }} | {{ number_format($stat->avg_ipk ?? 0, 2) }} |
| Belum ada data | ||
| Prodi | Aktif | Lulus | Dropout | Cuti |
|---|---|---|---|---|
| {{ $stat->prodi }} | {{ $stat->aktif ?? 0 }} | {{ $stat->lulus ?? 0 }} | {{ $stat->dropout ?? 0 }} | {{ $stat->cuti ?? 0 }} |
| Belum ada data | ||||
| Mata Kuliah | Peserta | Rata-rata |
|---|---|---|
|
{{ $mk->kode }} {{ $mk->nama }} |
{{ $mk->total_peserta ?? 0 }} | {{ number_format($mk->avg_nilai ?? 0, 2) }} |
| Belum ada data | ||
| Rank | NIM | Nama | Prodi | MK Diambil | IPK |
|---|---|---|---|---|---|
| @if($index < 3) {{ $index + 1 }} @else {{ $index + 1 }} @endif | {{ $mhs->nim }} |
{{ strtoupper(substr($mhs->nama, 0, 1)) }}
{{ $mhs->nama }}
|
{{ $mhs->prodi }} | {{ $mhs->total_matakuliah ?? 0 }} | {{ number_format($mhs->ipk ?? 0, 2) }} |
| Belum ada data nilai mahasiswa | |||||