PHP Classes

File: resources/views/vendor/livewire-tables/bootstrap-4/includes/pagination.blade.php

Recommend this page to a friend!
  Classes of Nyi Nyi Lwin   mtube   resources/views/vendor/livewire-tables/bootstrap-4/includes/pagination.blade.php   Download  
File: resources/views/vendor/livewire-tables/bootstrap-4/includes/pagination.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: mtube
Application to share videos between users
Author: By
Last change:
Date: 2 years ago
Size: 951 bytes
 

Contents

Class file image Download
@if ($showPagination)
    @if ($paginationEnabled && $rows->lastPage() > 1)
        <div class="row">
            <div class="col-12 col-md-6">
                {{ $rows->links() }}
            </div>

            <div class="col-12 col-md-6 text-center text-md-right text-muted">
                <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>{{ $rows->total() }}</strong>
                <span>@lang('results')</span>
            </div>
        </div>
    @else
        <div class="row">
            <div class="col-12 text-muted">
                @lang('Showing')
                <strong>{{ $rows->count() }}</strong>
                @lang('results')
            </div>
        </div>
    @endif
@endif