Skip to content

Commit 4725418

Browse files
committed
Add some new features docs.
Remove Laravel 4.2 documentation.
1 parent bb6a5a7 commit 4725418

File tree

1 file changed

+10
-13
lines changed

1 file changed

+10
-13
lines changed

readme.md

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ This package is created to handle [server-side](https://www.datatables.net/manua
1414
- **Eloquent ORM**
1515
- **Fluent Query Builder**
1616
- **Collection** [available on v5.x and later]
17-
- [DataTable Service Implementation (v6.x)](https://github.com/yajra/laravel-datatables/blob/6.0/CHANGELOG.md).
17+
- [DataTable Service Implementation (v6.x)](https://github.com/yajra/laravel-datatables/blob/6.0/CHANGELOG.md#v600---datatable-service-implementation).
1818
- Adding or editing content of columns and removing columns
19-
- Templating new or current columns via Blade Template Engine or by using Closure
19+
- Modify column values via Blade Template Engine or by using Closure
2020
- Works with **ALL the DATABASE** supported by Laravel
2121
- Works with **Oracle Database** using [Laravel-OCI8](https://github.com/yajra/laravel-oci8) package
2222
- Works with [DataTables](http://datatables.net) v1.10++.
@@ -31,10 +31,16 @@ This package is created to handle [server-side](https://www.datatables.net/manua
3131
- Provides a [DataTable Html Builder](http://datatables.yajrabox.com/html) to help you use the package with less code.
3232
- Provides XSS filtering function to optionally escape all or specified column values using `escapeColumns('*'\['column'])` method.
3333
- Provides Query Logging when application is in debug state. **Important: Make sure that debug is set to false when your code is in production**
34+
- Easily attach a resource on json response via `->with()`
35+
- Built-in support for exporting to CSV, EXCEL and PDF using [Laravel-Excel](https://github.com/Maatwebsite/Laravel-Excel).
36+
- Built-in printer friendly view or create your own by overriding `printPreview()` method.
37+
- Provides an artisan command for generating a DataTable service and scope.
38+
- See [change logs](https://github.com/yajra/laravel-datatables/blob/6.0/CHANGELOG.md) for more details.
3439

3540
## Requirements:
3641
- PHP 5.5.9 or later.
3742
- Laravel 5.0 or later.
43+
- [DataTables jQuery Plugin](http://datatables.net/) v1.10.x
3844

3945
## Laravel 4.2 & DataTables v1.9.x Users
4046
Most of the latest updates/features are not available on these versions. Please check [L4 Branch](https://github.com/yajra/laravel-datatables/tree/L4) and [L5 DT1.9](https://github.com/yajra/laravel-datatables/tree/L5-DT1.9) for old documentations of its features.
@@ -48,24 +54,16 @@ Most of the latest updates/features are not available on these versions. Please
4854
- [Demo Application](http://datatables.yajrabox.com) is available for artisan's reference.
4955

5056
## Quick Installation
51-
**Laravel 5:** `composer require yajra/laravel-datatables-oracle:~6.0`
52-
53-
**Laravel 4:** `composer require yajra/laravel-datatables-oracle:~3.0`
57+
`composer require yajra/laravel-datatables-oracle:~6.0`
5458

5559
#### Service Provider
5660
`Yajra\Datatables\DatatablesServiceProvider`
5761

5862
#### Facade
59-
**Laravel 4**
60-
`'Datatables' => 'yajra\Datatables\Facades\Datatables',`
61-
62-
**Laravel 5++**
6363
`Datatables` facade are automatically registered as an alias for `Yajra\Datatables\Datatables` class.
6464

6565
#### Configuration
66-
**Laravel 5:** `$ php artisan vendor:publish --tag=datatables`
67-
68-
**Laravel 4:** `$ php artisan config:publish yajra/laravel-datatables-oracle`
66+
`$ php artisan vendor:publish --tag=datatables`
6967

7068
And that's it! Start building out some awesome DataTables!
7169

@@ -92,4 +90,3 @@ If you discover any security related issues, please email [[email protected]](
9290
## License
9391

9492
The MIT License (MIT). Please see [License File](https://github.com/yajra/laravel-datatables/blob/master/LICENSE.md) for more information.
95-

0 commit comments

Comments
 (0)