Skip to content
Icon

WARNING You're browsing the documentation for an upcoming version of Laravel DataTables. The documentation and features of this release are subject to change.

Html Builder Parameters

Parameters are basically the options you pass when declaring your DataTable js script.

See the datatables.net official documentation for the list of all possible options.

Example

$builder->parameters([
'paging' => true,
'searching' => true,
'info' => false,
'searchDelay' => 350,
'language' => [
'url' => url('js/dataTables/language.json')
],
]);