@if ($articles->count() > 0)
@foreach ($articles as $article)
@php
$category = App\Models\Category::getCategoryByID($article->article_category_id);
$author_image = App\Models\User::getArticleAuthorImage($article->id);
@endphp
-
{{{ Carbon\Carbon::parse($article->created_at)->format('M j H:i:s') }}}
@if (!empty($category))
{{{$category->title}}}
@endif
{{ trans('Id') }} {{{ $article->unique_code }}}
@if ($article->status == 'major_revisions' || $article->status == 'minor_revisions')
Status: {{{ $article->status }}}
@endif
{{{$article->title}}}
@if ($article->status == 'articles_under_review')
@endif
-
{{{ Carbon\Carbon::parse($article->created_at)->diffForHumans() }}} on {{{ Carbon\Carbon::parse($article->created_at)->format('l \\a\\t H:i:s') }}}
{{{$article->title}}}
@php echo htmlspecialchars_decode(stripslashes($article->excerpt)); @endphp
@php $comments = App\Models\Article::getArticleCommentsByUserID($reviewer_id,$article->id); @endphp
@if (!empty($comments))
{{{trans('Reviewer Feedback')}}}
@foreach ($comments as $comment)
@endforeach
@endif
@endforeach
@if( method_exists($articles,'links') )
{{ $articles->links('pagination.custom') }}
@endif
@else
@include('errors.no-record')
@endif