Revize 9f8ab8cc
Přidáno uživatelem Adam Mištera před téměř 5 roky(ů)
resources/views/components/books.blade.php | ||
---|---|---|
10 | 10 |
<img class="card-img-top" src="{{asset('images/artefacts/book_cover_01.jpg')}}" width="100%" height=auto alt="book_cover"> |
11 | 11 |
</a> |
12 | 12 |
<div class="card-cus-bottom"> |
13 |
<a class="book-arrow book-arrow-left artefact-link previous-artefact" href="{{$artefacts->previousPageUrl()}}"></a> |
|
13 |
<a class="book-arrow book-arrow-left artefact-link previous-artefact {{$artefacts->onFirstPage() ? "invisible" : "visible"}}" href="{{$artefacts->previousPageUrl()}}"></a>
|
|
14 | 14 |
<div class="likes"> |
15 | 15 |
@if ($artefact->favourite) |
16 | 16 |
<a href="{{ action('ArtefactController@unlike', ['id' => $artefact->id]) }}"> |
... | ... | |
23 | 23 |
@endif |
24 | 24 |
<h6 class="artefact-likes">{{$artefact->likes}}</h6> |
25 | 25 |
</div> |
26 |
<a class="book-arrow book-arrow-right artefact-link next-artefact" href="{{$artefacts->nextPageUrl()}}"></a> |
|
26 |
<a class="book-arrow book-arrow-right artefact-link next-artefact {{$artefacts->hasMorePages() ? "visible" : "invisible"}}" href="{{$artefacts->nextPageUrl()}}"></a>
|
|
27 | 27 |
</div> |
28 | 28 |
</div> |
29 | 29 |
</div> |
Také k dispozici: Unified diff
[/] Oprava zobrazení tlačítek další a předchozí v komponentě knihy