-
{{$video->id}}
@if(count($video->tags))
@foreach($video->tags as $tag)
@if($tag == 'sfw')
SFW
@elseif($tag == 'nsfw')
NSFW
@endif
@endforeach
@endif
-
@if(auth()->check())
@if(auth()->user()->hasFaved($video->id))
@else
@endif
@else
@endif
-
-
@include('video-partials.popover-metadata')
-
-
@if(auth()->check())
@if(auth()->user()->can('delete_video'))
@endif
@endif
-