@foreach($newsComments as $comment)
{{\Carbon\Carbon::parse($comment->created_at)->diffForhumans()}}
{{$comment->message}}
@if (auth()->check() && auth()->user()->role_id == 1 && $comment->user->role_id != 3)
{{ auth()->check() ? str_replace(auth()->user()->full_name, __('common.you'), $comment->user->full_name) : $comment->user->full_name}}
@else {{ auth()->check() ? str_replace(auth()->user()->full_name, __('common.you'), $comment->user->full_name) : $comment->user->full_name}} @endif @if (auth()->check()) @if (userPermission('news-comment-status')) {{ $comment->status == 1 ? __('common.unapprove') : __('common.approve')}} @endif @if (userPermission('news-comment-delete')) {{ Form::open(['route' => 'news-comment-delete', 'method' => 'POST']) }} {{ Form::close() }} @endif {{__('edulia.reply')}} @endif{{\Carbon\Carbon::parse($comment->created_at)->diffForhumans()}}
{{$comment->message}}
@if (auth()->check()) @include('frontEnd.theme.edulia.news.comment_reply_form') @endif