123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- <?php
- return [
-
- 'search' => [
-
- 'smart' => true,
-
- 'case_insensitive' => true,
-
- 'use_wildcards' => false,
- ],
-
- 'fractal' => [
-
- 'includes' => 'include',
-
- 'serializer' => 'League\Fractal\Serializer\DataArraySerializer',
- ],
-
- 'script_template' => 'datatables::script',
-
- 'index_column' => 'DT_Row_Index',
-
- 'namespace' => [
-
- 'base' => 'DataTables',
-
- 'model' => '',
- ],
-
- 'pdf_generator' => 'excel',
-
- 'snappy' => [
- 'options' => [
- 'no-outline' => true,
- 'margin-left' => '0',
- 'margin-right' => '0',
- 'margin-top' => '10mm',
- 'margin-bottom' => '10mm',
- ],
- 'orientation' => 'landscape',
- ],
-
- 'json' => [
- 'header' => [],
- 'options' => 0,
- ],
- ];
|