28 lines
504 B
PHP
28 lines
504 B
PHP
<?php
|
|
|
|
return [
|
|
/*
|
|
* DataTables JavaScript global namespace.
|
|
*/
|
|
|
|
'namespace' => 'LaravelDataTables',
|
|
|
|
/*
|
|
* Default table attributes when generating the table.
|
|
*/
|
|
'table' => [
|
|
'class' => 'table',
|
|
'id' => 'dataTableBuilder',
|
|
],
|
|
|
|
/*
|
|
* Html builder script template.
|
|
*/
|
|
'script' => 'datatables::script',
|
|
|
|
/*
|
|
* Html builder script template for DataTables Editor integration.
|
|
*/
|
|
'editor' => 'datatables::editor',
|
|
];
|