mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
16 lines
403 B
PHP
Executable file
16 lines
403 B
PHP
Executable file
<?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; ?>
|