checkConsult($id); $course = $this->checkCourse($consult->course_id); $chapter = $this->checkChapter($consult->chapter_id); $user = $this->getLoginUser(); $validator = new ConsultValidator(); $validator->checkOwner($user->id, $consult->owner_id); $consult->update(['deleted' => 1]); $this->decrCourseConsultCount($course); $this->decrChapterConsultCount($chapter); } protected function decrCourseConsultCount(CourseModel $course) { if ($course->consult_count > 0) { $course->consult_count -= 1; $course->update(); } } protected function decrChapterConsultCount(ChapterModel $chapter) { if ($chapter->consult_count > 0) { $chapter->consult_count -= 1; $chapter->update(); } } }