@extends('template.index') @section('content')
@if (session('alert')) @endif

Comentários dos vídeos


@include('video-comments.filter')
@foreach ($comments as $comment)
@if($comment['donor']->email_safe == '1') @else @endif
@if($comment['donor']->email_safe == '1') {{$comment->donor->name}} - {{ date('d/m/Y H:i', strtotime($comment->created_at)) }} @else {{$comment->donor->name}} - {{ date('d/m/Y H:i', strtotime($comment->created_at)) }} @endif
{{$comment->comments}}

{{ $comment->count_replies_count}} respostas

{{ $comment->count_likes_count}} curtidas

{{ $comment->published ? 'Publicado' : 'Não publicado' }}

@endforeach
{{ $comments->links('template.paginacao') }}
@include('video-comments.replies-list')
@endsection @section('js') @endsection