9 lines
243 B
PHP
9 lines
243 B
PHP
<?php
|
|
$presenter = new Illuminate\Pagination\BootstrapPresenter($paginator);
|
|
?>
|
|
|
|
<?php if ($paginator->getLastPage() > 1): ?>
|
|
<ul class="pagination">
|
|
<?php echo $presenter->render(); ?>
|
|
</ul>
|
|
<?php endif; ?>
|