isAdmin($user)) { return true; } return $this->isAuthor($user, $report) || $this->teachesSection($user, $report); } public function create(User $user): bool { return $user !== null; } public function update(User $user, ClassProgressReport $report): bool { return $this->isAdmin($user) || $this->isAuthor($user, $report); } public function delete(User $user, ClassProgressReport $report): bool { return $this->isAdmin($user) || $this->isAuthor($user, $report); } private function isAuthor(User $user, ClassProgressReport $report): bool { return (int) $report->teacher_id === (int) $user->id; } /** Same relaxed section membership used by `ClassProgressQueryService::listReports`. */ private function teachesSection(User $user, ClassProgressReport $report): bool { return in_array( (int) $report->class_section_id, TeacherClass::distinctSectionIdsForTeacher((int) $user->id), true ); } private function isAdmin(User $user): bool { $roles = $user->roles() ->pluck('roles.name') ->map(fn ($name) => strtolower((string) $name)) ->toArray(); foreach (['administrator', 'admin', 'principal', 'vice_principal', 'vice-principal'] as $role) { if (in_array($role, $roles, true)) { return true; } } return false; } }