1: <?php
2:
3: namespace Yajra\Datatables\Html;
4:
5: use Illuminate\Support\Fluent;
6:
7: /**
8: * Class Parameters.
9: *
10: * @package Yajra\Datatables\Html
11: * @see https://datatables.net/reference/option/ for possible columns option
12: * @author Arjay Angeles <aqangeles@gmail.com>
13: */
14: class Parameters extends Fluent
15: {
16: /**
17: * @var array
18: */
19: protected $attributes = [
20: 'serverSide' => true,
21: 'processing' => true,
22: 'ajax' => '',
23: 'columns' => []
24: ];
25: }
26: