afb5011fbe
[BREAKING] — REMOVES REMOTE API A new API will need to be implemented properly using the new Laravel Passport OAuth2 system. DingoAPI was becoming too unstable and development wasn’t really moving along enough to continue to rely on it.
17 lines
577 B
PHP
17 lines
577 B
PHP
@if ($paginator->count() > 1)
|
|
<ul class="pagination">
|
|
<!-- Previous Page Link -->
|
|
@if ($paginator->onFirstPage())
|
|
<li class="disabled"><span>«</span></li>
|
|
@else
|
|
<li><a href="{{ $paginator->previousPageUrl() }}" rel="prev">«</a></li>
|
|
@endif
|
|
|
|
<!-- Next Page Link -->
|
|
@if ($paginator->hasMorePages())
|
|
<li><a href="{{ $paginator->nextPageUrl() }}" rel="next">»</a></li>
|
|
@else
|
|
<li class="disabled"><span>»</span></li>
|
|
@endif
|
|
</ul>
|
|
@endif
|