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>