setTableId('DummyTableId') ->columns($this->getColumns()) ->minifiedAjax() //->dom('DummyDOM') ->orderBy(1) ->selectStyleSingle() ->buttons([ DummyButtons ]); } /** * Get the dataTable columns definition. */ public function getColumns(): array { return [ Column::computed('action') ->exportable(false) ->printable(false) ->width(60) ->addClass('text-center'), DummyColumns ]; } }