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

Comments


{!! form(FormBuilder::create(CommentFiltersForm::class)) !!}
@forelse($comments as $comment) @empty @endforelse
Video Comment Replies Interactions Ban
{{Str::limit($comment->video->title, 100), '...'}}
{{$comment->user->username}} avatar
$comment->user->is($comment->video->user)]) href="{{$comment->user->route}}">{{$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]) @if($comment->is_banned)
{{$comment->banned_at->diffForHumans()}}
@else @endif

No matching comments

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