[
'name' => "comments",
'data' => [
'comments' =>
collect(json_decode($post['comments'], true))->map(function ($comment) {
return [
'title' => $comment['attributes']['title'],
'message' => $comment['attributes']['message'],
];
}),
]
],