3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-02-13 20:35:42 +00:00
Files
snipe-it/resources/views/paginator/slider.php
2016-03-25 01:18:05 -07:00

22 lines
449 B
PHP
Executable File

<?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>