Your browser does not support the video tag.
@unlessrole('Media Person')
@if ($video->status === 1)
Approved
@elseif ($video->status === 0)
Pending for Approval
@endif
@hasanyrole('dio|admin')
@if ($video->status === 0)
@endif
@endhasanyrole
@endunlessrole
@if (session('success'))
{{ session('success') }}
@endif
@hasanyrole('admin|dio')
Download
Cancel Download
{{$formattedSize}}
@endhasanyrole
@hasrole('Media Person')
{{$formattedSize}}
Download
Cancel Download
@endhasrole
{{ $video->title }}
{{ $video->description }}
Uploaded on: {{ $video->uploaded_on }}
@unless(auth()->user()->hasRole('Media Person'))
{{ number_format($video->views) }} views
@if ($video->tags->isNotEmpty())
Tags:
@foreach ($video->tags as $tag)
{{ $tag->name }}
@endforeach
@endif
@endunless
@if ($video->participants->isNotEmpty())
Participants:
@foreach ($video->participants as $participant)
{{ $participant->name }}
@endforeach
@endif