mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 23:54:12 -08:00
16 lines
403 B
PHP
16 lines
403 B
PHP
|
<?php
|
||
|
$presenter = new Illuminate\Pagination\BootstrapPresenter($paginator);
|
||
|
|
||
|
$trans = $environment->getTranslator();
|
||
|
?>
|
||
|
|
||
|
<?php if ($paginator->getLastPage() > 1) : ?>
|
||
|
<ul class="pager">
|
||
|
<?php
|
||
|
echo $presenter->getPrevious($trans->trans('pagination.previous'));
|
||
|
|
||
|
echo $presenter->getNext($trans->trans('pagination.next'));
|
||
|
?>
|
||
|
</ul>
|
||
|
<?php endif; ?>
|