@if(Auth::check())
can('delete_comment'))) $comments = $video->comments()->withTrashed()->get(); else $comments = $video->comments; ?> @if(count($comments) > 0) @foreach($comments as $comment) @include('partials.comment', ['comment' => $comment, 'mod' => $mod]) @endforeach @else
No comments yet! Be the first one to comment!
@endif
@include('partials.commentform')
@endif