mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
22 lines
449 B
PHP
22 lines
449 B
PHP
|
<?php
|
||
|
$presenter = new Illuminate\Pagination\BootstrapPresenter($paginator);
|
||
|
?>
|
||
|
|
||
|
<div class="pagination">
|
||
|
<ul class="pull left">
|
||
|
<li>
|
||
|
Showing
|
||
|
<?php echo $paginator->getFrom(); ?>
|
||
|
-
|
||
|
<?php echo $paginator->getTo(); ?>
|
||
|
of
|
||
|
<?php echo $paginator->getTotal(); ?>
|
||
|
items
|
||
|
</li>
|
||
|
</ul>
|
||
|
|
||
|
<ul class="pull-right">
|
||
|
<?php echo $presenter->render(); ?>
|
||
|
</ul>
|
||
|
</div>
|