@@ -30,17 +30,17 @@ return Datatables::of(User::all())->make(true);
30
30
```
31
31
32
32
## Requirements
33
- - [ PHP 5.5.9 or later ] ( http://php.net/ )
34
- - [ Laravel 5.0 or later ] ( https://github.com/laravel/framework )
35
- - [ DataTables jQuery Plugin ] ( http://datatables.net/ ) ** Version 1.10.xx **
33
+ - [ PHP >= 5.5.9] ( http://php.net/ )
34
+ - [ Laravel 5.x ] ( https://github.com/laravel/framework )
35
+ - [ jQuery DataTables v1.10.x ] ( http://datatables.net/ )
36
36
37
37
## Documentations
38
- - You will find user friendly and updated documentation in the wiki here: [ Laravel Datatables Wiki ] ( https ://github. com/yajra /laravel-datatables/wiki )
39
- - You will find the API Documentation here: [ Laravel Datatables API] ( http://yajra.github.io/laravel-datatables/api/ )
38
+ - [ Laravel Datatables Documentation ] ( http ://datatables.yajrabox. com/docs /laravel-datatables)
39
+ - [ Laravel Datatables API] ( http://yajra.github.io/laravel-datatables/api/ )
40
40
- [ Demo Application] ( http://datatables.yajrabox.com ) is available for artisan's reference.
41
41
42
42
## Quick Installation
43
- ` composer require yajra/laravel-datatables-oracle:~6.0 `
43
+ ` composer require yajra/laravel-datatables-oracle:dev-master `
44
44
45
45
#### Service Provider
46
46
` Yajra\Datatables\DatatablesServiceProvider::class `
@@ -53,13 +53,6 @@ return Datatables::of(User::all())->make(true);
53
53
54
54
And that's it! Start building out some awesome DataTables!
55
55
56
- ## Upgrading from v5.x to v6.x
57
- - Change all occurrences of ` yajra\Datatables ` to ` Yajra\Datatables ` . (Use Sublime's find and replace all for faster update).
58
- - Remove ` Datatables ` facade registration.
59
- - Temporarily comment out ` Yajra\Datatables\DatatablesServiceProvider ` .
60
- - Update package version on your composer.json and use ` yajra/laravel-datatables-oracle: ~6.0 `
61
- - Uncomment the provider ` Yajra\Datatables\DatatablesServiceProvider ` .
62
-
63
56
## Debugging Mode
64
57
To enable debugging mode, just set ` APP_DEBUG=true ` and the package will include the queries and inputs used when processing the table.
65
58
0 commit comments