18 lines
891 B
PHP
18 lines
891 B
PHP
<div class="video-metadata-overlay">
|
|
@if($video->interpret) <div class="artist">
|
|
<strong>Artist:</strong> {{$video->interpret}}
|
|
</div>@endif
|
|
@if($video->songtitle) <div class="songtitle">
|
|
<strong>Songtitle:</strong> {{$video->songtitle}}
|
|
</div>@endif
|
|
@if($video->imgsource) <div class="source">
|
|
<strong>Video Source:</strong> {{$video->imgsource}}
|
|
</div>@endif
|
|
<div class="category">
|
|
<strong>Category:</strong> <a class="text-dark" href="/index?q={{$video->category->name}}">{{$video->category->name}}</a>
|
|
</div>
|
|
<div class="uploader">
|
|
<strong>Uploader:</strong> <a class="text-dark" href="{{ url('user/' . $video->user->username) }}">{!! $video->user->displayName() !!}</a></span> <time class="timeago" data-toggle="tooltip" datetime="{{$video->created_at->toIso8601String()}}" title="{{$video->created_at->toIso8601String()}}"></time></a>
|
|
</div>
|
|
</div>
|