コード例 #1
0
ファイル: Comment.php プロジェクト: ahkmunna/laravel.io
 public function delete()
 {
     if ($this->exists && $this->isMainComment()) {
         $this->children()->delete();
     }
     parent::delete();
 }