コード例 #1
0
ファイル: Student.php プロジェクト: proteye/skyeng
 /**
  * Remove all students
  */
 public function removeTeachers()
 {
     TeacherStudent::deleteAll(['student_id' => $this->id]);
 }
コード例 #2
0
ファイル: Teacher.php プロジェクト: proteye/skyeng
 /**
  * Remove all students
  */
 public function removeStudents()
 {
     TeacherStudent::deleteAll(['teacher_id' => $this->id]);
 }