-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/seven-theme' of https://github.com/bossofgames/…
…phpvms into feature/seven-theme
- Loading branch information
Showing
5 changed files
with
120 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
88 changes: 88 additions & 0 deletions
88
resources/views/layouts/seven/pagination/bootstrap-5.blade.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
@if ($paginator->hasPages()) | ||
<nav class="d-flex justify-items-center justify-content-between"> | ||
<div class="d-flex justify-content-between flex-fill d-sm-none"> | ||
<ul class="pagination"> | ||
{{-- Previous Page Link --}} | ||
@if ($paginator->onFirstPage()) | ||
<li class="page-item disabled" aria-disabled="true"> | ||
<span class="page-link">@lang('pagination.previous')</span> | ||
</li> | ||
@else | ||
<li class="page-item"> | ||
<a class="page-link" href="{{ $paginator->previousPageUrl() }}" rel="prev">@lang('pagination.previous')</a> | ||
</li> | ||
@endif | ||
|
||
{{-- Next Page Link --}} | ||
@if ($paginator->hasMorePages()) | ||
<li class="page-item"> | ||
<a class="page-link" href="{{ $paginator->nextPageUrl() }}" rel="next">@lang('pagination.next')</a> | ||
</li> | ||
@else | ||
<li class="page-item disabled" aria-disabled="true"> | ||
<span class="page-link">@lang('pagination.next')</span> | ||
</li> | ||
@endif | ||
</ul> | ||
</div> | ||
|
||
<div class="d-none flex-sm-fill d-sm-flex align-items-sm-center justify-content-sm-between"> | ||
<div> | ||
<p class="small text-muted"> | ||
{!! __('Showing') !!} | ||
<span class="fw-semibold">{{ $paginator->firstItem() }}</span> | ||
{!! __('to') !!} | ||
<span class="fw-semibold">{{ $paginator->lastItem() }}</span> | ||
{!! __('of') !!} | ||
<span class="fw-semibold">{{ $paginator->total() }}</span> | ||
{!! __('results') !!} | ||
</p> | ||
</div> | ||
|
||
<div> | ||
<ul class="pagination"> | ||
{{-- Previous Page Link --}} | ||
@if ($paginator->onFirstPage()) | ||
<li class="page-item disabled" aria-disabled="true" aria-label="@lang('pagination.previous')"> | ||
<span class="page-link" aria-hidden="true">‹</span> | ||
</li> | ||
@else | ||
<li class="page-item"> | ||
<a class="page-link" href="{{ $paginator->previousPageUrl() }}" rel="prev" aria-label="@lang('pagination.previous')">‹</a> | ||
</li> | ||
@endif | ||
|
||
{{-- Pagination Elements --}} | ||
@foreach ($elements as $element) | ||
{{-- "Three Dots" Separator --}} | ||
@if (is_string($element)) | ||
<li class="page-item disabled" aria-disabled="true"><span class="page-link">{{ $element }}</span></li> | ||
@endif | ||
|
||
{{-- Array Of Links --}} | ||
@if (is_array($element)) | ||
@foreach ($element as $page => $url) | ||
@if ($page == $paginator->currentPage()) | ||
<li class="page-item active" aria-current="page"><span class="page-link">{{ $page }}</span></li> | ||
@else | ||
<li class="page-item"><a class="page-link" href="{{ $url }}">{{ $page }}</a></li> | ||
@endif | ||
@endforeach | ||
@endif | ||
@endforeach | ||
|
||
{{-- Next Page Link --}} | ||
@if ($paginator->hasMorePages()) | ||
<li class="page-item"> | ||
<a class="page-link" href="{{ $paginator->nextPageUrl() }}" rel="next" aria-label="@lang('pagination.next')">›</a> | ||
</li> | ||
@else | ||
<li class="page-item disabled" aria-disabled="true" aria-label="@lang('pagination.next')"> | ||
<span class="page-link" aria-hidden="true">›</span> | ||
</li> | ||
@endif | ||
</ul> | ||
</div> | ||
</div> | ||
</nav> | ||
@endif |
29 changes: 29 additions & 0 deletions
29
resources/views/layouts/seven/pagination/simple-bootstrap-5.blade.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
@if ($paginator->hasPages()) | ||
<nav role="navigation" aria-label="Pagination Navigation"> | ||
<ul class="pagination"> | ||
{{-- Previous Page Link --}} | ||
@if ($paginator->onFirstPage()) | ||
<li class="page-item disabled" aria-disabled="true"> | ||
<span class="page-link">{!! __('pagination.previous') !!}</span> | ||
</li> | ||
@else | ||
<li class="page-item"> | ||
<a class="page-link" href="{{ $paginator->previousPageUrl() }}" rel="prev"> | ||
{!! __('pagination.previous') !!} | ||
</a> | ||
</li> | ||
@endif | ||
|
||
{{-- Next Page Link --}} | ||
@if ($paginator->hasMorePages()) | ||
<li class="page-item"> | ||
<a class="page-link" href="{{ $paginator->nextPageUrl() }}" rel="next">{!! __('pagination.next') !!}</a> | ||
</li> | ||
@else | ||
<li class="page-item disabled" aria-disabled="true"> | ||
<span class="page-link">{!! __('pagination.next') !!}</span> | ||
</li> | ||
@endif | ||
</ul> | ||
</nav> | ||
@endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters