/* Получение комментариев и их авторов */
public static function getCommentsIDNews($newsID){
$getCommentsIDNews = Comments::where([
['news_comments', '=', $newsID],
['status_comments', '=', 1]
])
->join('users', 'author_comments', '=', 'id_users')
->get();
return $getCommentsIDNews;
}