Nayjest/Grids

View on GitHub
resources/views/default/components/records_per_page.php

Summary

Maintainability
A
0 mins
Test Coverage
<span>Records per page</span>
<?php
/** @var Nayjest\Grids\Components\RecordsPerPage $component */
echo \Form::select(
    $component->getInputName(),
    $component->getVariants(),
    $component->getValue(),
    [
        'class' => "form-control input-sm grids-control-records-per-page",
        'style' => 'display: inline; width: 80px; margin-right: 10px'
    ]
);
?>