init backend presensi

This commit is contained in:
mwpn
2026-03-05 14:37:36 +07:00
commit b4fda6b9c9
319 changed files with 27261 additions and 0 deletions

View File

@@ -0,0 +1 @@
# Students Module - Controllers

View File

@@ -0,0 +1 @@
# Students Module - Entities

View File

@@ -0,0 +1 @@
# Students Module - Models

View File

@@ -0,0 +1,19 @@
<?php
/**
* Students Module Routes
*
* This file is automatically loaded by ModuleLoader.
* Define your student management routes here.
*
* @var RouteCollection $routes
*/
// Example route structure (uncomment and modify as needed):
// $routes->group('api/students', ['namespace' => 'App\Modules\Students\Controllers'], function($routes) {
// $routes->get('/', 'StudentController::index');
// $routes->get('(:num)', 'StudentController::show/$1');
// $routes->post('/', 'StudentController::create');
// $routes->put('(:num)', 'StudentController::update/$1');
// $routes->delete('(:num)', 'StudentController::delete/$1');
// });

View File

@@ -0,0 +1 @@
# Students Module - Services