|
| 1 | +# General Settings |
| 2 | + |
| 3 | +You can change the package behavior by updating the configuration file. |
| 4 | + |
| 5 | +The configuration file can be found at `config/datatables.php`. |
| 6 | + |
| 7 | +```php |
| 8 | +// config/datatables.php |
| 9 | + |
| 10 | +return [ |
| 11 | + /** |
| 12 | + * DataTables search options. |
| 13 | + */ |
| 14 | + 'search' => [ |
| 15 | + /** |
| 16 | + * Smart search will enclose search keyword with wildcard string "%keyword%". |
| 17 | + * SQL: column LIKE "%keyword%" |
| 18 | + */ |
| 19 | + 'smart' => true, |
| 20 | + |
| 21 | + /** |
| 22 | + * Case insensitive will search the keyword in lower case format. |
| 23 | + * SQL: LOWER(column) LIKE LOWER(keyword) |
| 24 | + */ |
| 25 | + 'case_insensitive' => true, |
| 26 | + |
| 27 | + /** |
| 28 | + * Wild card will add "%" in between every characters of the keyword. |
| 29 | + * SQL: column LIKE "%k%e%y%w%o%r%d%" |
| 30 | + */ |
| 31 | + 'use_wildcards' => false, |
| 32 | + ], |
| 33 | + |
| 34 | + /** |
| 35 | + * DataTables fractal configurations. |
| 36 | + */ |
| 37 | + 'fractal' => [ |
| 38 | + /** |
| 39 | + * Request key name to parse includes on fractal. |
| 40 | + */ |
| 41 | + 'includes' => 'include', |
| 42 | + |
| 43 | + /** |
| 44 | + * Default fractal serializer. |
| 45 | + */ |
| 46 | + 'serializer' => 'League\Fractal\Serializer\DataArraySerializer', |
| 47 | + ], |
| 48 | + |
| 49 | + /** |
| 50 | + * DataTables script view template. |
| 51 | + */ |
| 52 | + 'script_template' => 'datatables::script', |
| 53 | + |
| 54 | + /** |
| 55 | + * DataTables internal index id response column name. |
| 56 | + */ |
| 57 | + 'index_column' => 'DT_Row_Index', |
| 58 | + |
| 59 | + /** |
| 60 | + * Namespaces used by the generator. |
| 61 | + */ |
| 62 | + 'namespace' => [ |
| 63 | + /** |
| 64 | + * Base namespace/directory to create the new file. |
| 65 | + * This is appended on default Laravel namespace. |
| 66 | + * Usage: php artisan datatables:make User |
| 67 | + * Output: App\DataTables\UserDataTable |
| 68 | + * With Model: App\User (default model) |
| 69 | + * Export filename: users_timestamp |
| 70 | + */ |
| 71 | + 'base' => 'DataTables', |
| 72 | + |
| 73 | + /** |
| 74 | + * Base namespace/directory where your model's are located. |
| 75 | + * This is appended on default Laravel namespace. |
| 76 | + * Usage: php artisan datatables:make Post --model |
| 77 | + * Output: App\DataTables\PostDataTable |
| 78 | + * With Model: App\Post |
| 79 | + * Export filename: posts_timestamp |
| 80 | + */ |
| 81 | + 'model' => '', |
| 82 | + ], |
| 83 | + |
| 84 | + /** |
| 85 | + * PDF generator to be used when converting the table to pdf. |
| 86 | + * Available generators: excel, snappy |
| 87 | + * Snappy package: barryvdh/laravel-snappy |
| 88 | + * Excel package: maatwebsite/excel |
| 89 | + */ |
| 90 | + 'pdf_generator' => 'excel', |
| 91 | + |
| 92 | + /** |
| 93 | + * Snappy PDF options. |
| 94 | + */ |
| 95 | + 'snappy' => [ |
| 96 | + 'options' => [ |
| 97 | + 'no-outline' => true, |
| 98 | + 'margin-left' => '0', |
| 99 | + 'margin-right' => '0', |
| 100 | + 'margin-top' => '10mm', |
| 101 | + 'margin-bottom' => '10mm', |
| 102 | + ], |
| 103 | + 'orientation' => 'landscape', |
| 104 | + ], |
| 105 | + ]; |
| 106 | +]; |
| 107 | +``` |
0 commit comments