35 lines
1.7 KiB
PHP
35 lines
1.7 KiB
PHP
<div class="text-center">
|
|
@if($related)
|
|
@if(($prev = $video->getPrev($related)) === null)
|
|
<a class="first" href="#" style="visibility: hidden;">🡄 first</a>
|
|
<a id="prev" href="#" style="visibility: hidden;">🡄 prev</a> |
|
|
@else
|
|
<a class="first" href="{{url($related->baseurl(), $video->getFirstId($related))}}">🡄 first</a>
|
|
<a id="prev" href="{{url($related->baseurl(), [$prev->id])}}">🡄 prev</a> |
|
|
@endif
|
|
<a href="{{url($related->baseurl())}}">{!!$related->displayName()!!}</a>
|
|
@if(($next = $video->getNext($related)) === null)
|
|
| <a id="next" href="#" style="visibility: hidden;">next 🡆</a>
|
|
<a class="last" href="#" style="visibility: hidden;">last 🡆</a>
|
|
@else
|
|
| <a id="next" href="{{url($related->baseurl(), [$next->id])}}">next 🡆</a>
|
|
<a class="last" href="{{url($related->baseurl(), $video->getLastId($related))}}">last 🡆</a>
|
|
@endif
|
|
@else
|
|
@if(($prev = $video->getPrev()) === null)
|
|
<a class="first" href="#" style="visibility: hidden;">🡄 first</a>
|
|
<a id="prev" href="#" style="visibility: hidden;">🡄 prev</a> |
|
|
@else
|
|
<a class="first" href="{{url($video->getFirstId())}}">🡄 first</a>
|
|
<a id="prev" href="{{url($prev->id)}}">🡄 prev</a> |
|
|
@endif
|
|
<a href="{{url('/')}}">random</a>
|
|
@if(($next = $video->getNext()) === null)
|
|
| <a id="next" href="#" style="visibility: hidden;">next 🡆</a>
|
|
<a class="last" href="#" style="visibility: hidden;">last 🡆</a>
|
|
@else
|
|
| <a id="next" href="{{url($next->id)}}">next 🡆</a>
|
|
<a class="last" href="{{url($video->getLastId())}}">last 🡆</a>
|
|
@endif
|
|
@endif
|
|
</div> |