コード例 #1
0
 public function comments()
 {
     return Comment::allBy('thread_id', $this->id);
 }
コード例 #2
0
ファイル: Recipes.php プロジェクト: sarahfran/myrecipes
 public function comments()
 {
     $result = Comment::allBy('id', $this->id);
     return $result;
 }