DONE: centralize theme color, interactive dashboard, increase winner result, refer TODO

This commit is contained in:
ISMAIL MASSERAN
2026-05-10 11:51:19 +08:00
parent 654a0c9fea
commit fd1baf34c8
47 changed files with 2680 additions and 932 deletions
+2
View File
@@ -72,9 +72,11 @@ Route::prefix('v1')->group(function () { //Version 1 of my Rest API
Route::prefix('election')->group(function () {
Route::get('result/{id}', 'API\v1\Election\ResultController@finalResult');
Route::get('{id}/attendance-summary', 'API\v1\Election\AttendanceSummaryController');
Route::get('results', 'API\v1\Election\ResultController');
Route::post('start', 'API\v1\Election\StartController');
Route::post('stop', 'API\v1\Election\StopController');
Route::post('register-next', 'API\v1\Election\RegisterNextSessionController');
Route::get('', 'API\v1\Election\GetController');
});