Example #1
0
 /**
  * Remove all students
  */
 public function removeTeachers()
 {
     TeacherStudent::deleteAll(['student_id' => $this->id]);
 }
Example #2
0
 /**
  * Remove all students
  */
 public function removeStudents()
 {
     TeacherStudent::deleteAll(['teacher_id' => $this->id]);
 }