public function comments()
{
return $this->hasMany(Comment::class, 'article_id');
}
[
{
"id": 1,
"title": "title_1_article",
"comments": [
{
"id": 1,
"article_id": 1,
"comment": "first_comment"
},
{
"id": 2,
"article_id": 1,
"comment": "second_comment"
}
]
}
]