public function comments()
 {
     return Comment::allBy('thread_id', $this->id);
 }
Ejemplo n.º 2
0
 public function comments()
 {
     $result = Comment::allBy('id', $this->id);
     return $result;
 }