@use('App\Filters\Forms\User\CommentFiltersForm') @extends('layouts.user') @section('title', 'Channel comments') @section('content') @if($comments->total() || request()->all())

Your videos comments


{!! form(FormBuilder::create(CommentFiltersForm::class)) !!}
@forelse($comments as $comment) @empty @endforelse
Video Comment Replies Interactions Action
@include('users.videos.partials.thumbnail', ['video' => $comment->video]) {{Str::limit($comment->video->title, 100), '...'}}
{{$comment->user->username}} avatar
{{$comment->user->username}}  • {{$comment->created_at->diffForHumans()}} @if($comment->is_updated)  • Modified @endif
{{$comment->content}}
@if($comment->replies_count) @else
No replies
@endif
@include('users.partials.interactions', ['item' => $comment])

No matching comments

{{ $comments->links() }} @include('users.comments.modals.replies') @include('users.comments.modals.delete') @else
No comments yet
Upload more video for more comments
@endif @endsection