Updates
This commit is contained in:
25
vendor/yajra/laravel-datatables-oracle/src/Html/Parameters.php
vendored
Normal file
25
vendor/yajra/laravel-datatables-oracle/src/Html/Parameters.php
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
namespace Yajra\Datatables\Html;
|
||||
|
||||
use Illuminate\Support\Fluent;
|
||||
|
||||
/**
|
||||
* Class Parameters.
|
||||
*
|
||||
* @package Yajra\Datatables\Html
|
||||
* @see https://datatables.net/reference/option/ for possible columns option
|
||||
* @author Arjay Angeles <aqangeles@gmail.com>
|
||||
*/
|
||||
class Parameters extends Fluent
|
||||
{
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
protected $attributes = [
|
||||
'serverSide' => true,
|
||||
'processing' => true,
|
||||
'ajax' => '',
|
||||
'columns' => []
|
||||
];
|
||||
}
|
Reference in New Issue
Block a user