https://github.com/devoverid/laravel-next-datatable
A Server Side Processing Datatable for Vue Next Datatable
https://github.com/devoverid/laravel-next-datatable
Last synced: 4 months ago
JSON representation
A Server Side Processing Datatable for Vue Next Datatable
- Host: GitHub
- URL: https://github.com/devoverid/laravel-next-datatable
- Owner: devoverid
- License: mit
- Created: 2021-08-31T12:36:53.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-09-20T23:47:24.000Z (almost 5 years ago)
- Last Synced: 2024-04-22T12:06:00.901Z (about 2 years ago)
- Language: PHP
- Size: 14.6 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Laravel Next Datatable
[](https://packagist.org/packages/next-datatable/datatable)
[](https://packagist.org/packages/next-datatable/datatable)

A Server Side Proccessing Package Laravel for Vue Next Datatable.
You can see [Vue Next Datatable](https://github.com/devoverid/vue-next-datatable)
## Installation
You can install the package via composer:
```bash
composer require next-datatable/datatable
```
Publish config :
```
php artisan vendor:publish --provider="NextDatatable\Datatable\DatatableServiceProvider"
```
## Usage
```php
use NextDatatable\Datatable\Facades\Datatable;
$eloquent = App\Models\User::query();
$datatable = Datatable::of($eloquent)->make();
return $datatable;
```
### Testing
```bash
composer test
```
### Changelog
Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.
## Contributing
Please see [CONTRIBUTING](CONTRIBUTING.md) for details.
### Security
If you discover any security related issues, please email fiandwi0424@gmail.com instead of using the issue tracker.
## Credits
- [viandwi24](https://github.com/next-datatable)
- [All Contributors](../../contributors)
## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.