yajra / laravel-datatables-html
Laravel DataTables HTML builder plugin
Fund package maintenance!
yajra
Patreon
www.paypal.me/yajra
Installs: 6 536 103
Dependents: 49
Suggesters: 10
Security: 0
Stars: 272
Watchers: 10
Forks: 61
Open Issues: 3
Requires
- php: ^8.2
- ext-json: *
- yajra/laravel-datatables-oracle: ^11.0
Requires (Dev)
- larastan/larastan: ^2.9.1
- laravel/pint: ^1.14
- livewire/livewire: ^3.4
- orchestra/testbench: ^9
- rector/rector: ^1.0
Suggests
- laravel/livewire: Required for Livewire layout support.
- v11.6.0
- v11.5.1
- v11.5.0
- v11.4.0
- v11.3.0
- v11.2.1
- v11.2.0
- v11.1.0
- dev-master / 11.0.x-dev
- v11.0.0
- 10.x-dev
- v10.12.0
- v10.11.0
- v10.10.0
- v10.9.1
- v10.9.0
- v10.8.2
- v10.8.1
- v10.8.0
- v10.7.0
- v10.6.0
- v10.5.2
- v10.5.1
- v10.5.0
- v10.4.0
- v10.3.1
- v10.3.0
- v10.2.0
- v10.1.0
- v10.0.0
- v9.4.0
- v9.3.4
- v9.3.3
- v9.3.2
- v9.3.1
- v9.3.0
- v9.2.6
- v9.2.5
- v9.2.4
- v9.2.3
- v9.2.2
- v9.2.1
- v9.2.0
- v9.1.2
- v9.1.1
- v9.1.0
- 9.0.x-dev
- v9.0.3
- v9.0.2
- v9.0.1
- v9.0.0
- v4.41.1
- v4.41.0
- v4.40.0
- v4.39.1
- v4.39.0
- v4.38.0
- v4.37.0
- v4.36.3
- v4.36.2
- v4.36.1
- v4.36.0
- v4.35.2
- v4.35.1
- v4.35.0
- v4.34.0
- v4.33.0
- v4.32.0
- v4.31.0
- v4.30.3
- v4.30.2
- v4.30.1
- v4.30.0
- v4.29.0
- v4.28.0
- v4.27.0
- v4.26.1
- v4.26.0
- v4.25.1
- v4.25.0
- v4.24.0
- v4.23.1
- v4.23.0
- v4.22.0
- v4.21.1
- v4.21.0
- v4.20.2
- v4.20.1
- v4.20.0
- v4.19.4
- v4.19.3
- v4.19.2
- v4.19.1
- v4.19.0
- v4.18.2
- v4.18.1
- v4.18.0
- v4.17.0
- v4.16.0
- v4.15.0
- v4.14.2
- v4.14.1
- v4.14.0
- v4.13.0
- v4.12.0
- v4.11.0
- v4.10.1
- v4.10.0
- v4.9.0
- v4.8.0
- v4.7.1
- v4.7.0
- v4.6.0
- v4.5.4
- v4.5.3
- v4.5.2
- v4.5.1
- v4.5.0
- v4.4.1
- v4.4.0
- v4.3.2
- v4.3.1
- v4.3.0
- v4.2.1
- v4.2.0
- v4.1.0
- 4.0.x-dev
- v4.0.0
- v3.13.1
- v3.13.0
- v3.12.7
- v3.12.6
- v3.12.5
- v3.12.4
- v3.12.2
- v3.12.1
- v3.12.0
- v3.11.0
- v3.10.0
- v3.9.0
- v3.8.1
- v3.8.0
- v3.7.2
- v3.7.1
- v3.7.0
- v3.6.0
- v3.5.2
- v3.5.1
- v3.5.0
- v3.4.0
- v3.3.0
- v3.2.1
- v3.2.0
- v3.1.0
- 3.0.x-dev
- v3.0.3
- v3.0.2
- v3.0.1
- v3.0.0
- v2.1.0
- 2.0.x-dev
- v2.0.7
- v2.0.6
- v2.0.5
- v2.0.4
- v2.0.3
- v2.0.2
- v2.0.1
- v2.0.0
- v1.4.1
- v1.4.0
- v1.3.0
- v1.2.0
- v1.1.1
- v1.1.0
- 1.0.x-dev
- v1.0.0
- dev-patch-57
This package is auto-updated.
Last update: 2024-10-31 00:16:55 UTC
README
This package is a plugin of Laravel DataTables for generating dataTables script using PHP.
Requirements
Documentations
Laravel Version Compatibility
Quick Installation
composer require yajra/laravel-datatables-html:^11
Setup scripts with ViteJS
Set the default javascript type to module
by setting Builder::useVite()
in the AppServiceProvider
.
namespace App\Providers; use Illuminate\Pagination\Paginator; use Illuminate\Support\ServiceProvider; use Yajra\DataTables\Html\Builder; class AppServiceProvider extends ServiceProvider { /** * Bootstrap any application services. */ public function boot(): void { Paginator::useBootstrapFive(); Builder::useVite(); } }
Publish Assets (Optional)
$ php artisan vendor:publish --tag=datatables-html
And that's it! Start building out some awesome DataTables!
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email aqangeles@gmail.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.