bkcare/
│
├── assets/
│   ├── css/
│   │   └── style.css
│   ├── js/
│   │   └── script.js
│   └── img/
│
├── config/
│   ├── database.php
│   └── function.php
│
├── includes/
│   ├── header.php
│   ├── footer.php
│   └── navbar.php
│
├── modules/
│   ├── dashboard.php
│   ├── tahun_ajaran/
│   │   ├── index.php
│   │   ├── tambah.php
│   │   ├── edit.php
│   │   └── hapus.php
│   ├── users/
│   │   ├── index.php
│   │   ├── tambah.php
│   │   ├── edit.php
│   │   └── hapus.php
│   ├── kelas/
│   │   ├── index.php
│   │   ├── tambah.php
│   │   ├── edit.php
│   │   └── hapus.php
│   ├── guru/
│   │   ├── index.php
│   │   ├── tambah.php
│   │   ├── edit.php
│   │   └── hapus.php
│   ├── siswa/
│   │   ├── index.php
│   │   ├── tambah.php
│   │   ├── edit.php
│   │   ├── hapus.php
│   │   └── detail.php
│   ├── laporan/
│   │   ├── index.php
│   │   ├── tambah.php
│   │   ├── edit.php
│   │   ├── hapus.php
│   │   └── detail.php
│   ├── jadwal/
│   │   ├── index.php
│   │   ├── tambah.php
│   │   ├── edit.php
│   │   └── detail.php
│   ├── konseling/
│   │   ├── index.php
│   │   ├── tambah.php
│   │   ├── sesi.php
│   │   └── detail.php
│   ├── perkembangan/
│   │   ├── index.php
│   │   └── tambah.php
│   ├── pelanggaran/
│   │   ├── index.php
│   │   └── tambah.php
│   └── notifikasi/
│       └── index.php
│
├── auth/
│   ├── login.php
│   ├── logout.php
│   └── proses_login.php
│
├── api/
│   ├── get_siswa.php
│   └── get_kelas.php
│
├── index.php
└── .htaccess