11 linhas
230 B
PHP
Ficheiro executável
11 linhas
230 B
PHP
Ficheiro executável
<?php
|
|
$presenter = new Illuminate\Pagination\BootstrapPresenter($paginator);
|
|
?>
|
|
|
|
<?php if ($paginator->getLastPage() > 1): ?>
|
|
<div class="pagination">
|
|
<ul>
|
|
<?php echo $presenter->render(); ?>
|
|
</ul>
|
|
</div>
|
|
<?php endif; ?>
|