PATH:
home
/
rwabteecom
/
public_html_olld
/
resources
/
views
/
vendor
/
livewire-tables
/
components
/
Editing: pagination.blade.php
@aware(['component']) @props(['rows']) @if ($component->hasConfigurableAreaFor('before-pagination')) @include( $component->getConfigurableAreaFor('before-pagination'), $component->getParametersForConfigurableArea('before-pagination')) @endif @if ($component->isTailwind()) <div> @if ($component->paginationVisibilityIsEnabled()) <div class="mt-4 px-4 md:p-0 sm:flex justify-between items-center space-y-4 sm:space-y-0"> <div> @if ($component->paginationIsEnabled() && $component->isPaginationMethod('standard') && $rows->lastPage() > 1) <p class="paged-pagination-results text-sm text-gray-700 leading-5 dark:text-white"> @if ($component->showPaginationDetails()) <span>@lang('Showing')</span> <span class="font-medium">{{ $rows->firstItem() }}</span> <span>@lang('to')</span> <span class="font-medium">{{ $rows->lastItem() }}</span> <span>@lang('of')</span> <span class="font-medium"><span x-text="paginationTotalItemCount"></span></span> <span>@lang('results')</span> @endif </p> @elseif ($component->paginationIsEnabled() && $component->isPaginationMethod('simple')) <p class="paged-pagination-results text-sm text-gray-700 leading-5 dark:text-white"> @if ($component->showPaginationDetails()) <span>@lang('Showing')</span> <span class="font-medium">{{ $rows->firstItem() }}</span> <span>@lang('to')</span> <span class="font-medium">{{ $rows->lastItem() }}</span> @endif </p> @elseif ($component->paginationIsEnabled() && $component->isPaginationMethod('cursor')) @else <p class="total-pagination-results text-sm text-gray-700 leading-5 dark:text-white"> @lang('Showing') <span class="font-medium">{{ $rows->count() }}</span> @lang('results') </p> @endif </div> @if ($component->paginationIsEnabled()) {{ $rows->links('livewire-tables::specific.tailwind.' . (!$component->isPaginationMethod('standard') ? 'simple-' : '') . 'pagination') }} @endif </div> @endif </div> @elseif ($component->isBootstrap4()) <div> @if ($component->paginationVisibilityIsEnabled()) @if ($component->paginationIsEnabled() && $component->isPaginationMethod('standard') && $rows->lastPage() > 1) <div class="row mt-3"> <div class="col-12 col-md-6 overflow-auto"> {{ $rows->links('livewire-tables::specific.bootstrap-4.pagination') }} </div> <div class="col-12 col-md-6 text-center text-md-right text-muted"> @if ($component->showPaginationDetails()) <span>@lang('Showing')</span> <strong>{{ $rows->count() ? $rows->firstItem() : 0 }}</strong> <span>@lang('to')</span> <strong>{{ $rows->count() ? $rows->lastItem() : 0 }}</strong> <span>@lang('of')</span> <strong><span x-text="paginationTotalItemCount"></span></strong> <span>@lang('results')</span> @endif </div> </div> @elseif ($component->paginationIsEnabled() && $component->isPaginationMethod('simple')) <div class="row mt-3"> <div class="col-12 col-md-6 overflow-auto"> {{ $rows->links('livewire-tables::specific.bootstrap-4.simple-pagination') }} </div> <div class="col-12 col-md-6 text-center text-md-right text-muted"> @if ($component->showPaginationDetails()) <span>@lang('Showing')</span> <strong>{{ $rows->count() ? $rows->firstItem() : 0 }}</strong> <span>@lang('to')</span> <strong>{{ $rows->count() ? $rows->lastItem() : 0 }}</strong> @endif </div> </div> @elseif ($component->paginationIsEnabled() && $component->isPaginationMethod('cursor')) <div class="row mt-3"> <div class="col-12 col-md-6 overflow-auto"> {{ $rows->links('livewire-tables::specific.bootstrap-4.simple-pagination') }} </div> </div> @else <div class="row mt-3"> <div class="col-12 text-muted"> @lang('Showing') <strong>{{ $rows->count() }}</strong> @lang('results') </div> </div> @endif @endif </div> @elseif ($component->isBootstrap5()) <div> <div class="d-flex align-items-center flex-xxl-row flex-column mb-5 mt-3"> @if ($component->paginationVisibilityIsEnabled()) @if ($component->paginationIsEnabled() && $component->perPageVisibilityIsEnabled()) <div class="mb-xxl-0 mb-xl-5 mb-3 d-flex align-items-center justify-content-sm-start justify-content-center"> <span class="me-3 text-gray-600 fs-4 fs-xl-6">{!! __('Show') !!}</span> <select wire:model.live="perPage" id="{{ $this->tableName }}-perPage" class="form-select w-auto data-sorting pl-1 pr-5 py-2 border-0"> @foreach ($component->getPerPageAccepted() as $item) <option value="{{ $item }}" wire:key="{{ $this->tableName }}-per-page-{{ $item }}"> {{ $item === -1 ? __('All') : $item }} </option> @endforeach </select> </div> @if ($component->paginationIsEnabled() && $rows->lastPage() > 1) <div class="row flex-md-row-reverse flex-column-reverse mx-0 w-100"> <div class="col-12 col-xxl-9 col-lg-8 overflow-auto pagination-center ms-auto"> {{ $rows->links('livewire-tables::specific.bootstrap-4.pagination') }} </div> <div class="col-12 col-xxl-3 col-lg-4 text-center text-lg-end text-gray-600 d-flex align-items-center justify-content-md-start justify-content-center mb-md-0 mb-3 flex-wrap ps-0"> <div class="fs-4 fs-xl-6 ms-lg-3"> <span>@lang('Showing')</span> <span class="fw-bold">{{ $rows->count() ? $rows->firstItem() : 0 }}</span> <span>@lang('to')</span> <span class="fw-bold">{{ $rows->count() ? $rows->lastItem() : 0 }}</span> <span>@lang('of')</span> <span class="fw-bold">{{ $rows->total() }}</span> <span>@lang('results')</span> </div> </div> </div> @else <div class="row"> <div class="col-12 ms-3 text-gray-600 fs-4"> @lang('Showing') <strong>{{ $rows->count() }}</strong> @lang('results') </div> </div> @endif @endif @endif </div> </div> @endif @if ($component->hasConfigurableAreaFor('after-pagination')) @include( $component->getConfigurableAreaFor('after-pagination'), $component->getParametersForConfigurableArea('after-pagination')) @endif
SAVE
CANCEL