You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Contributions are **welcome** and will be fully **credited**.
4
+
5
+
We accept contributions via Pull Requests on [Github](https://github.com/yajra/laravel-datatables-oracle).
6
+
7
+
8
+
## Pull Requests
9
+
10
+
-**[PSR-2 Coding Standard](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md)** - The easiest way to apply the conventions is to install [PHP Code Sniffer](http://pear.php.net/package/PHP_CodeSniffer).
11
+
12
+
-**Document any change in behaviour** - Make sure the `README.md` and any other relevant documentation are kept up-to-date.
13
+
14
+
-**Consider our release cycle** - We try to follow [SemVer v2.0.0](http://semver.org/). Randomly breaking public APIs is not an option.
15
+
16
+
-**Send coherent history** - Make sure each individual commit in your pull request is meaningful. If you had to make multiple intermediate commits while developing, please squash them before submitting.
Copy file name to clipboardexpand all lines: readme.md
+21-4
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,14 @@ This package is created to handle [server-side](https://www.datatables.net/manua
29
29
- Works with Laravel Dependency Injection and IoC Container.
30
30
- Provides a [DataTable Html Builder](http://datatables.yajrabox.com/html) to help you use the package with less code.
31
31
- Provides XSS filtering function to optionally escape all or specified column values using `escapeColumns('*'\['column'])` method.
32
+
- DataTable as a Service implementation.
33
+
- Provides DataTable Service.
34
+
- Provides artisan command for creating a service. `php artisan datatables:make UsersDataTable`
35
+
- Provides artisan command for creating a DataTable scope. `php artisan datatables:scope ActiveUserScope`
36
+
- Provides built-in support for server-side buttons. (Formerly TableTools).
37
+
- Available buttons are `csv, excel, pdf, print`.
38
+
- Built-in support for exporting to CSV, EXCEL and PDF using [Laravel-Excel](https://github.com/Maatwebsite/Laravel-Excel).
39
+
- Built-in printer friendly view or create your own by overriding `printPreview()` method.
32
40
33
41
## Buy me a beer
34
42
<ahref='https://pledgie.com/campaigns/29515'><imgalt='Click here to lend your support to: Laravel Datatables and make a donation at pledgie.com !'src='https://pledgie.com/campaigns/29515.png?skin_name=chrome'border='0' ></a>
@@ -39,7 +47,7 @@ This package is created to handle [server-side](https://www.datatables.net/manua
39
47
-[Demo Application](http://datatables.yajrabox.com) is available for artisan's reference.
0 commit comments