예제 #1
0
파일: QltyData.php 프로젝트: hunglmtb/eb
 public function delete()
 {
     // Delete all of the products that have the same ids...
     QltyDataDetail::where("QLTY_DATA_ID", $this->primaryKey)->delete();
     // Finally, delete this category...
     return parent::delete();
 }