75 lines
3.1 KiB
Markdown
75 lines
3.1 KiB
Markdown
# Laravel DataTables Complete Package
|
|
|
|
[](https://gitter.im/yajra/laravel-datatables?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
|
[](https://www.paypal.me/yajra)
|
|
[](https://www.patreon.com/bePatron?u=4521203)
|
|
|
|
[](http://laravel.com)
|
|
[](https://packagist.org/packages/yajra/laravel-datatables-oracle)
|
|
[](https://github.com/yajra/laravel-datatables/actions/workflows/continuous-integration.yml)
|
|
[](https://github.com/yajra/laravel-datatables/actions/workflows/static-analysis.yml)
|
|
|
|
[](https://packagist.org/packages/yajra/laravel-datatables-oracle)
|
|
[](https://packagist.org/packages/yajra/laravel-datatables-oracle)
|
|
|
|
This package is a complete installer of [Laravel DataTables](https://github.com/yajra/laravel-datatables) core & plugins.
|
|
|
|
## Requirements
|
|
|
|
- [PHP >= 8.2](http://php.net/)
|
|
- [Laravel 11.x](https://github.com/laravel/framework)
|
|
- [jQuery DataTables v1.10.x](http://datatables.net/)
|
|
- [jQuery DataTables Buttons Extension](https://datatables.net/reference/button/)
|
|
|
|
## Documentations
|
|
|
|
- [Laravel DataTables Documentation](http://yajrabox.com/docs/laravel-datatables)
|
|
|
|
## Laravel Version Compatibility
|
|
|
|
| Laravel | Package |
|
|
|:--------------|:--------|
|
|
| 8.x and below | 1.x |
|
|
| 9.x | 9.x |
|
|
| 10.x | 10.x |
|
|
| 11.x | 11.x |
|
|
|
|
## Installation
|
|
|
|
`composer require yajra/laravel-datatables:^11`
|
|
|
|
#### Service Providers
|
|
|
|
Update `config/app.php` and register the following providers.
|
|
|
|
> This step is optional if you are using Laravel 5.5.
|
|
|
|
```php
|
|
Yajra\DataTables\DataTablesServiceProvider::class,
|
|
Yajra\DataTables\ButtonsServiceProvider::class,
|
|
Yajra\DataTables\FractalServiceProvider::class
|
|
```
|
|
|
|
#### Configuration and Assets (Optional)
|
|
|
|
`$ php artisan vendor:publish`
|
|
|
|
And that's it! Start building out some awesome DataTables!
|
|
|
|
## Contributing
|
|
|
|
Please see [CONTRIBUTING](https://github.com/yajra/laravel-datatables/blob/master/.github/CONTRIBUTING.md) for details.
|
|
|
|
## Security
|
|
|
|
If you discover any security related issues, please email [aqangeles@gmail.com](mailto:aqangeles@gmail.com) instead of using the issue tracker.
|
|
|
|
## Credits
|
|
|
|
- [Arjay Angeles](https://github.com/yajra)
|
|
- [All Contributors](https://github.com/yajra/laravel-datatables/graphs/contributors)
|
|
|
|
## License
|
|
|
|
The MIT License (MIT). Please see [License File](https://github.com/yajra/laravel-datatables/blob/master/LICENSE.md) for more information.
|