Fixed many feature failures around preferences, route coverage, administrator enrollment, assignment section names, attendance tracking controller access, finance PDF generation, and finance notification logging.
API CI/CD / Validate (composer + pint) (push) Successful in 3m15s
API CI/CD / Test (PHPUnit) (push) Failing after 5m4s
API CI/CD / Build frontend assets (push) Successful in 1m3s
API CI/CD / Security audit (push) Failing after 49s
API CI/CD / Deploy to shared hosting (PHP) (push) Has been skipped

This commit is contained in:
root
2026-07-07 21:26:47 -04:00
parent e13df69885
commit e0dfc3ec82
46 changed files with 19799 additions and 75 deletions
@@ -29,8 +29,7 @@ class AttendanceDailySummaryService
private function fetchTodaySummary(string $type): array
{
$start = now()->startOfDay();
$endEx = now()->addDay()->startOfDay();
$today = now()->toDateString();
$query = DB::table('attendance_data as ad')
->join('students as s', 's.id', '=', 'ad.student_id')
@@ -45,8 +44,7 @@ class AttendanceDailySummaryService
'u.firstname as parent_firstname',
'u.lastname as parent_lastname'
)
->where('ad.date', '>=', $start)
->where('ad.date', '<', $endEx);
->whereDate('ad.date', $today);
if ($type === 'absent') {
$query->where(function ($w) {