@php $articles = App\Article::getPublishedArticle(); @endphp
@if (!empty($articles))
{{{trans('prs.recent_articles')}}}
@foreach ($articles as $article)
@php $author = App\User::getUserDataByID($article->corresponding_author_id); @endphp
-
{{{$author->name}}}
@endforeach
@endif