select('score') ->where('student_id', $studentId) ->where('semester', $semester) ->where('school_year', $schoolYear); if ($classSectionId !== null) { $builder->where('class_section_id', $classSectionId); } $result = $builder->first(); return $result ? $result['score'] : null; } }