PHP Classes

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

Recommend this page to a friend!
  Classes of Nyi Nyi Lwin   mtube   resources/views/vendor/livewire-tables/bootstrap-4/includes/per-page.blade.php   Download  
File: resources/views/vendor/livewire-tables/bootstrap-4/includes/per-page.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: 390 bytes
 

Contents

Class file image Download
@if ($paginationEnabled && $showPerPage)
    <div class="ml-0 ml-md-2">
        <select
            wire:model="perPage"
            id="perPage"
            class="form-control"
        >
            @foreach ($perPageAccepted as $item)
                <option value="{{ $item }}">{{ $item === -1 ? __('All') : $item }}</option>
            @endforeach
        </select>
    </div>
@endif