This package is a plugin of Laravel DataTables for generating dataTables script using PHP.
Laravel | Package |
---|---|
8.x and below | 4.x |
9.x | 9.x |
10.x | 10.x |
11.x | 11.x |
composer require yajra/laravel-datatables-html:^11
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();
}
}
$ php artisan vendor:publish --tag=datatables-html
And that's it! Start building out some awesome DataTables!
Please see CONTRIBUTING for details.
If you discover any security related issues, please email aqangeles@gmail.com instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.