{{ t('Comments') }}

{!! Form::open() !!}
{!! Form::textarea('comment', null,['class'=>"form-control",'rows'=>2,'placeholder'=>t('Comment')]) !!}
{!! Form::submit(t('Comment'),['class'=>'btn btn-info']) !!}
{!! Form::close() !!} @foreach($comments as $comment)
{{ $comment->user->fullname }}

{{ ucfirst($comment->user->fullname) }} @if(auth()->check() == true AND ($comment->user_id == auth()->user()->id || $image->user->id == auth()->user()->id)) @endif {{ $comment->created_at->toISO8601String() }}

{!! \App\Artvenue\Helpers\Smilies::parse($comment->comment) !!}

{{ $comment->votes->count() }} @if(auth()->check()) {{ t('Reply') }}
{!! Form::textarea('comment', null ,['id'=>'textboxcontent'.$comment->id,'class'=>"form-control",'rows'=>2,'placeholder'=>t('Comment')]) !!}
{{ t('Cancel') }}
@endif @foreach($comment->replies as $reply)
{{ $reply->user->fullname }}

{{ ucfirst($reply->user->fullname) }} @if(auth()->check() === true AND ($reply->user_id == auth()->user()->id || $image->id == auth()->user()->id || $reply->comment->user->id == auth()->user()->id)) @endif {{ $reply->created_at->toISO8601String() }}

{!! \App\Artvenue\Helpers\Smilies::parse($reply->reply) !!}

{{ $reply->votes->count() }}

@endforeach

@endforeach
{!! $comments->render() !!}