Skip to content

Commit 9ddb8a4

Browse files
committed
Merge branch 'documentation-print' of https://github.com/jiwom/laravel-datatables-docs into documentation-print
2 parents 2016f10 + abfe8ec commit 9ddb8a4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+1069
-171
lines changed

buttons/config.md renamed to buttons-config.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ Set the PDF generator to be used when converting your dataTable to pdf.
3737

3838
Available generators are: `excel`, `snappy`
3939

40-
### Excel Generator (Default Generator)
40+
### Excel Generator
4141
When `excel` is used as the generator, the package will use [`maatwebsite/excel`](http://www.maatwebsite.nl/laravel-excel/docs) to generate the PDF.
4242

4343
> To export files to pdf, you will have to include "dompdf/dompdf": "~0.6.1", "mpdf/mpdf": "~5.7.3" or "tecnick.com/tcpdf": "~6.0.0" in your composer.json and change the export.pdf.driver config setting accordingly.
4444
45-
### Snappy Generator
45+
### Snappy Generator (Default Generator)
4646
When `snappy` is used as the generator, you need to install [`barryvdh/laravel-snappy`](https://github.com/barryvdh/laravel-snappy)
4747

4848
### Snappy PDF Options
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

buttons/starter.md renamed to buttons-starter.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,7 @@ class UsersDataTable extends DataTable
4949
```php
5050
use App\DataTables\UsersDataTable;
5151

52-
Route::get('users', function getUsers(UsersDataTable $dataTable)
53-
{
52+
Route::get('users', function(UsersDataTable $dataTable) {
5453
return $dataTable->render('users.index');
5554
});
5655
```
File renamed without changes.

community-links.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Community Links
2+
3+
## Articles
4+
5+
6+
## Videos

documentation.md

Lines changed: 63 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,91 +1,108 @@
1-
- Prologue
1+
- ## Prologue
22
- [Release Notes](/docs/{{package}}/{{version}}/releases)
33
- [Upgrade Guide](/docs/{{package}}/{{version}}/upgrade)
44
- [Contribution Guide](/docs/{{package}}/{{version}}/contributing)
55
- [Security Issues](/docs/{{package}}/{{version}}/security)
66
- [API Documentation](http://yajra.github.io/{{package}}/api/{{version}})
7-
- Setup
8-
- [Installation](/docs/{{package}}/{{version}}/installation)
9-
- Getting Started
7+
8+
- ## Getting Started
109
- [Introduction](/docs/{{package}}/{{version}}/introduction)
10+
- [Installation](/docs/{{package}}/{{version}}/installation)
1111
- [Demo Application](https://datatables.yajrabox.com/)
12-
- Tutorials
12+
- [Community Links](/docs/{{package}}/{{version}}/community-links)
13+
14+
- ## Tutorials
1315
- [Quick Starter](https://datatables.yajrabox.com/starter)
1416
- [Service Implementation](https://datatables.yajrabox.com/service)
15-
- Configuration
17+
18+
- ## Configuration
1619
- [General Settings](/docs/{{package}}/{{version}}/general-settings)
1720
- [Debugging Mode](/docs/{{package}}/{{version}}/debugger)
1821
- [Error Handler](/docs/{{package}}/{{version}}/error-handler)
19-
- DataTables Classes
20-
- [Eloquent](/docs/{{package}}/{{version}}/engine/eloquent)
21-
- [Query Builder](/docs/{{package}}/{{version}}/engine/query)
22-
- [Collection](/docs/{{package}}/{{version}}/engine/collection)
23-
- Response
24-
- [Array Response](/docs/{{package}}/{{version}}/response/array)
25-
- [Object Response](/docs/{{package}}/{{version}}/response/object)
26-
- [Fractal Transformer](/docs/{{package}}/{{version}}/response/fractal)
27-
- [Fractal Serializer](/docs/{{package}}/{{version}}/response/fractal-serializer)
28-
- [Additional Data Response](/docs/{{package}}/{{version}}/response/with)
29-
- Column Editing
22+
23+
- ## DataTables Classes
24+
- [Eloquent](/docs/{{package}}/{{version}}/engine-eloquent)
25+
- [Query Builder](/docs/{{package}}/{{version}}/engine-query)
26+
- [Collection](/docs/{{package}}/{{version}}/engine-collection)
27+
28+
- ## Response
29+
- [Array Response](/docs/{{package}}/{{version}}/response-array)
30+
- [Object Response](/docs/{{package}}/{{version}}/response-object)
31+
- [Fractal Transformer](/docs/{{package}}/{{version}}/response-fractal)
32+
- [Fractal Serializer](/docs/{{package}}/{{version}}/response-fractal-serializer)
33+
- [Additional Data Response](/docs/{{package}}/{{version}}/response-with)
34+
35+
- ## Column Editing
3036
- [Add Column](/docs/{{package}}/{{version}}/add-column)
3137
- [Edit Column](/docs/{{package}}/{{version}}/edit-column)
3238
- [Remove Column](/docs/{{package}}/{{version}}/remove-column)
3339
- [Index Column](/docs/{{package}}/{{version}}/index-column)
3440
- [Raw Columns](/docs/{{package}}/{{version}}/raw-columns)
3541
- [Print Columns](/docs/{{package}}/{{version}}/print-columns)
42+
3643
- Row Editing
3744
- [Row Options](/docs/{{package}}/{{version}}/row-options)
3845
- [Row ID](/docs/{{package}}/{{version}}/row-options#row-id)
3946
- [Row Class](/docs/{{package}}/{{version}}/row-options#row-class)
4047
- [Row Data](/docs/{{package}}/{{version}}/row-options#row-data)
4148
- [Row Attributes](/docs/{{package}}/{{version}}/row-options#row-attributes)
42-
- Searching
49+
50+
- ## Searching
4351
- [Manual Search](/docs/{{package}}/{{version}}/manual-search)
4452
- [Filter Column](/docs/{{package}}/{{version}}/filter-column)
45-
- [Query Builder Extension](/docs/{{package}}/{{version}}/query-builder)
4653
- [Regex Search](/docs/{{package}}/{{version}}/regex)
4754
- [Smart Search](/docs/{{package}}/{{version}}/smart-search)
4855
- [Relationships](/docs/{{package}}/{{version}}/relationships)
49-
- Sorting/Ordering
56+
57+
- ## Sorting/Ordering
5058
- [Manual Order](/docs/{{package}}/{{version}}/manual-order)
5159
- [Order Column](/docs/{{package}}/{{version}}/order-column)
5260
- [Order Columns](/docs/{{package}}/{{version}}/order-columns)
5361
- [Order By Nulls Last](/docs/{{package}}/{{version}}/order-by-nulls-last)
54-
- Utilities
62+
63+
- ## Utilities
5564
- [XSS filtering](/docs/{{package}}/{{version}}/xss)
5665
- [Blacklist Columns](/docs/{{package}}/{{version}}/blacklist)
5766
- [Whitelist Columns](/docs/{{package}}/{{version}}/whitelist)
5867
- [Set Total Records](/docs/{{package}}/{{version}}/set-total-records)
59-
- [With Trashed](/docs/{{package}}/{{version}}/with-trashed)
60-
- [Only Trashed](/docs/{{package}}/{{version}}/only-trashed)
68+
- [Set Filtered Records](/docs/{{package}}/{{version}}/set-filtered-records)
6169
- [Skip Paging](/docs/{{package}}/{{version}}/skip-paging)
6270

6371
### PLUGINS
6472

65-
- HTML Builder
66-
- [Installation](/docs/{{package}}/{{version}}/html/installation)
67-
- [Builder](/docs/{{package}}/{{version}}/html/builder)
68-
- [Table](/docs/{{package}}/{{version}}/html/table)
69-
- [Config](/docs/{{package}}/{{version}}/html/config)
70-
- [Columns](/docs/{{package}}/{{version}}/html/column)
71-
- [Macro](/docs/{{package}}/{{version}}/html/macro)
72-
- [Ajax](/docs/{{package}}/{{version}}/html/ajax)
73-
- [Minified Ajax](/docs/{{package}}/{{version}}/html/minified-ajax)
74-
- [Parameters](/docs/{{package}}/{{version}}/html/parameters)
75-
- [Events/Callbacks](/docs/{{package}}/{{version}}/html/callbacks)
76-
- [Add Action](/docs/{{package}}/{{version}}/html/action)
77-
- [Add Checkbox](/docs/{{package}}/{{version}}/html/checkbox)
78-
- [Add Index](/docs/{{package}}/{{version}}/html/index)
73+
- ## HTML Builder
74+
- [Installation](/docs/{{package}}/{{version}}/html-installation)
75+
- [Builder](/docs/{{package}}/{{version}}/html-builder)
76+
- [Table](/docs/{{package}}/{{version}}/html-builder-table)
77+
- [Config](/docs/{{package}}/{{version}}/html-builder-config)
78+
- [Columns](/docs/{{package}}/{{version}}/html-builder-column)
79+
- [Macro](/docs/{{package}}/{{version}}/html-builder-macro)
80+
- [Ajax](/docs/{{package}}/{{version}}/html-builder-ajax)
81+
- [Minified Ajax](/docs/{{package}}/{{version}}/html-builder-minified-ajax)
82+
- [Parameters](/docs/{{package}}/{{version}}/html-builder-parameters)
83+
- [Events/Callbacks](/docs/{{package}}/{{version}}/html-builder-callbacks)
84+
- [Add Action](/docs/{{package}}/{{version}}/html-builder-action)
85+
- [Add Checkbox](/docs/{{package}}/{{version}}/html-builder-checkbox)
86+
- [Add Index](/docs/{{package}}/{{version}}/html-builder-index)
7987
- [Github](https://github.com/yajra/laravel-datatables-html)
8088

81-
- Buttons
82-
- [Installation](/docs/{{package}}/{{version}}/buttons/installation)
83-
- [Configuration](/docs/{{package}}/{{version}}/buttons/config)
84-
- [Quick Starter](/docs/{{package}}/{{version}}/buttons/starter)
85-
- [DataTable Buttons](/docs/{{package}}/{{version}}/buttons/export)
86-
- [Custom Actions](/docs/{{package}}/{{version}}/buttons/custom)
87-
- [Sending Parameters](/docs/{{package}}/{{version}}/buttons/with)
88-
- [Extended DataTable](/docs/{{package}}/{{version}}/buttons/extended)
89-
- [Artisan Console](/docs/{{package}}/{{version}}/buttons/console)
89+
- ## Buttons
90+
- [Installation](/docs/{{package}}/{{version}}/buttons-installation)
91+
- [Configuration](/docs/{{package}}/{{version}}/buttons-config)
92+
- [Quick Starter](/docs/{{package}}/{{version}}/buttons-starter)
93+
- [DataTable Buttons](/docs/{{package}}/{{version}}/buttons-export)
94+
- [Custom Actions](/docs/{{package}}/{{version}}/buttons-custom)
95+
- [Sending Parameters](/docs/{{package}}/{{version}}/buttons-with)
96+
- [Extended DataTable](/docs/{{package}}/{{version}}/buttons-extended)
97+
- [Buttons Command](/docs/{{package}}/{{version}}/buttons-console)
9098
- [Github](https://github.com/yajra/laravel-datatables-buttons)
9199

100+
- ## Editor
101+
- [Installation](/docs/{{package}}/{{version}}/editor-installation)
102+
- [Editor Command](/docs/{{package}}/{{version}}/editor-command)
103+
- [Editor Model](/docs/{{package}}/{{version}}/editor-model)
104+
- [Editor Rules](/docs/{{package}}/{{version}}/editor-rules)
105+
- [Event Hooks](/docs/{{package}}/{{version}}/editor-events)
106+
- [Usage](/docs/{{package}}/{{version}}/editor-usage)
107+
- [Tutorial](/docs/{{package}}/{{version}}/editor-tutorial)
108+
- [Github](https://github.com/yajra/laravel-datatables-editor)

0 commit comments

Comments
 (0)