ajout app
This commit is contained in:
15
SNIPE-IT/resources/views/paginator/simple.php
Normal file
15
SNIPE-IT/resources/views/paginator/simple.php
Normal file
@ -0,0 +1,15 @@
|
||||
<?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; ?>
|
Reference in New Issue
Block a user