sarga/config/datagrid.php

28 lines
414 B
PHP
Raw Normal View History

<?php
return [
/**
* Default OrderBy
*
* * Accepted Values = Array
*/
'defaultOrder' => [
'column' => 'id',
'direction' => 'desc'
],
/**
* Select distinct records only
*
* Accepted Values = True || False
*/
'distinct' => true,
/**
* Default pagination
*
* Accepted Values = integer
*/
'pagination' => 10
];