add: full multi-tenancy control
This commit is contained in:
20
storage/framework/views/90deeaf9f2dcac7abfde3cc13e37ffd7.php
Executable file
20
storage/framework/views/90deeaf9f2dcac7abfde3cc13e37ffd7.php
Executable file
@@ -0,0 +1,20 @@
|
||||
<?php if($paginator->hasPages()): ?>
|
||||
<nav>
|
||||
<ul class="pagination">
|
||||
|
||||
<?php if($paginator->onFirstPage()): ?>
|
||||
<li class="disabled" aria-disabled="true"><span><?php echo app('translator')->get('pagination.previous'); ?></span></li>
|
||||
<?php else: ?>
|
||||
<li><a href="<?php echo e($paginator->previousPageUrl()); ?>" rel="prev"><?php echo app('translator')->get('pagination.previous'); ?></a></li>
|
||||
<?php endif; ?>
|
||||
|
||||
|
||||
<?php if($paginator->hasMorePages()): ?>
|
||||
<li><a href="<?php echo e($paginator->nextPageUrl()); ?>" rel="next"><?php echo app('translator')->get('pagination.next'); ?></a></li>
|
||||
<?php else: ?>
|
||||
<li class="disabled" aria-disabled="true"><span><?php echo app('translator')->get('pagination.next'); ?></span></li>
|
||||
<?php endif; ?>
|
||||
</ul>
|
||||
</nav>
|
||||
<?php endif; ?>
|
||||
<?php /**PATH /var/www/html/vendor/laravel/framework/src/Illuminate/Pagination/resources/views/simple-default.blade.php ENDPATH**/ ?>
|
||||
Reference in New Issue
Block a user