@aware(['isTailwind','isBootstrap','isBootstrap4','isBootstrap5'])
@includeWhen(
$this->hasConfigurableAreaFor('before-pagination'),
$this->getConfigurableAreaFor('before-pagination'),
$this->getParametersForConfigurableArea('before-pagination')
)
@if ($this->isTailwind)
getPaginationWrapperAttributesBag() }}>
@if ($this->paginationVisibilityIsEnabled())
@if ($this->paginationIsEnabled() && $this->isPaginationMethod('standard') && $this->getRows->lastPage() > 1)
@elseif ($this->paginationIsEnabled() && $this->isPaginationMethod('simple'))
@elseif ($this->paginationIsEnabled() && $this->isPaginationMethod('cursor'))
@else
@endif
@if ($this->paginationIsEnabled())
{{ $this->getRows->links('livewire-tables::specific.tailwind.'.(!$this->isPaginationMethod('standard') ? 'simple-' : '').'pagination') }}
@endif
@endif
@elseif ($this->isBootstrap4)
getPaginationWrapperAttributesBag() }}>
@if ($this->paginationVisibilityIsEnabled())
@if ($this->paginationIsEnabled() && $this->isPaginationMethod('standard') && $this->getRows->lastPage() > 1)
{{ $this->getRows->links('livewire-tables::specific.bootstrap-4.pagination') }}
@if($this->showPaginationDetails())
{{ __($this->getLocalisationPath.'Showing') }}
{{ $this->getRows->count() ? $this->getRows->firstItem() : 0 }}
{{ __($this->getLocalisationPath.'to') }}
{{ $this->getRows->count() ? $this->getRows->lastItem() : 0 }}
{{ __($this->getLocalisationPath.'of') }}
{{ __($this->getLocalisationPath.'results') }}
@endif
@elseif ($this->paginationIsEnabled() && $this->isPaginationMethod('simple'))
{{ $this->getRows->links('livewire-tables::specific.bootstrap-4.simple-pagination') }}
@if($this->showPaginationDetails())
{{ __($this->getLocalisationPath.'Showing') }}
{{ $this->getRows->count() ? $this->getRows->firstItem() : 0 }}
{{ __($this->getLocalisationPath.'to') }}
{{ $this->getRows->count() ? $this->getRows->lastItem() : 0 }}
@endif
@elseif ($this->paginationIsEnabled() && $this->isPaginationMethod('cursor'))
{{ $this->getRows->links('livewire-tables::specific.bootstrap-4.simple-pagination') }}
@else
{{ __($this->getLocalisationPath.'Showing') }}
{{ $this->getRows->count() }}
{{ __($this->getLocalisationPath.'results') }}
@endif
@endif
@elseif ($this->isBootstrap5)
getPaginationWrapperAttributesBag() }} >
@if ($this->paginationVisibilityIsEnabled())
@if ($this->paginationIsEnabled() && $this->isPaginationMethod('standard') && $this->getRows->lastPage() > 1)
{{ $this->getRows->links('livewire-tables::specific.bootstrap-4.pagination') }}
@if($this->showPaginationDetails())
{{ __($this->getLocalisationPath.'Showing') }}
{{ $this->getRows->count() ? $this->getRows->firstItem() : 0 }}
{{ __($this->getLocalisationPath.'to') }}
{{ $this->getRows->count() ? $this->getRows->lastItem() : 0 }}
{{ __($this->getLocalisationPath.'of') }}
{{ __($this->getLocalisationPath.'results') }}
@endif
@elseif ($this->paginationIsEnabled() && $this->isPaginationMethod('simple'))
{{ $this->getRows->links('livewire-tables::specific.bootstrap-4.simple-pagination') }}
@if($this->showPaginationDetails())
{{ __($this->getLocalisationPath.'Showing') }}
{{ $this->getRows->count() ? $this->getRows->firstItem() : 0 }}
{{ __($this->getLocalisationPath.'to') }}
{{ $this->getRows->count() ? $this->getRows->lastItem() : 0 }}
@endif
@elseif ($this->paginationIsEnabled() && $this->isPaginationMethod('cursor'))
{{ $this->getRows->links('livewire-tables::specific.bootstrap-4.simple-pagination') }}
@else
{{ __($this->getLocalisationPath.'Showing') }}
{{ $this->getRows->count() }}
{{ __($this->getLocalisationPath.'results') }}
@endif
@endif
@endif
@includeWhen(
$this->hasConfigurableAreaFor('after-pagination'),
$this->getConfigurableAreaFor('after-pagination'),
$this->getParametersForConfigurableArea('after-pagination')
)