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