コード例 #1
0
ファイル: LinkRepository.php プロジェクト: bohap/online-study
 /**
  * Delete a link from the course.
  *
  * @param Link $link
  * @return mixed
  */
 public function deleteLink(Link $link)
 {
     $result = \DB::transaction(function () use($link) {
         $link->delete();
     });
     return $result;
 }