Laravel Datatables

jQuery DataTables API for Laravel 4|5|6|7|8|9|10
Alternatives To Laravel Datatables
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Laravel Datatables4,5192,4813213 days ago390September 20, 2022486mitPHP
jQuery DataTables API for Laravel 4|5|6|7|8|9|10
Laravel Livewire Tables1,338314 hours ago67May 03, 202229mitPHP
A dynamic table component for Laravel Livewire
Livewire Powergrid1,065
2 days ago83June 29, 20223mitPHP
⚡ PowerGrid generates Advanced Datatables using Laravel Livewire.
Livewire Datatables1,06317 days ago38April 04, 2022158mitPHP
Advanced datatables using Laravel, Livewire, Tailwind CSS and Alpine JS
Laravel 5 Bootstrap 3 Starter Site917
5 years ago6PHP
Laravel Framework 5 Bootstrap 3 Starter Site is a basic application with news, photo and video galeries.
Tables62210268 days ago429June 29, 20224PHP
Bulma themed, VueJS powered Datatable with server-side loading and JSON template setup
Lavacharts6012475a year ago57November 23, 202015otherPHP
Lavacharts is a graphing / charting library for PHP 5.4+ that wraps Google's Javascript Chart API.
Awesome Livewire542
2 months ago1
🚀 A curated list of awesome resources related to Livewire. https://github.com/livewire/livewire
Laratables48582a year ago26February 16, 2022mitPHP
Ajax support of DataTables (Laravel 5.5 to Laravel 8.x)
Ladmin378125 days ago47September 07, 2022mitPHP
Make an Administrator page in 5 minutes
Alternatives To Laravel Datatables
Select To Compare


Alternative Project Comparisons
Readme

jQuery DataTables API for Laravel 4|5|6|7|8|9|10

Join the chat at https://gitter.im/yajra/laravel-datatables Donate Donate

Laravel 4.2|5.x|6|7|8|9|10 Latest Stable Version Latest Unstable Version Build Status Total Downloads License

Laravel package for handling server-side works of DataTables jQuery Plugin via AJAX option by using Eloquent ORM, Fluent Query Builder or Collection.

return datatables()->eloquent(User::query())->toJson();
return datatables()->query(DB::table('users'))->toJson();
return datatables()->collection(User::all())->toJson();

return datatables(User::query())->toJson();
return datatables(DB::table('users'))->toJson();
return datatables(User::all())->toJson();

Sponsors

DataTables JetBrains.com Blackfire.io

Requirements

Documentations

Laravel Version Compatibility

Laravel Package
4.2.x 3.x
5.0.x 6.x
5.1.x 6.x
5.2.x 6.x
5.3.x 6.x
5.4.x 7.x, 8.x
5.5.x 8.x
5.6.x 8.x
5.7.x 8.x
5.8.x 9.x
6.x.x 9.x
7.x.x 9.x
8.x.x 9.x
9.x.x 10.x
10.x.x 10.x

Quick Installation

composer require yajra/laravel-datatables-oracle:"^10.0"

Service Provider & Facade (Optional on Laravel 5.5+)

Register provider and facade on your config/app.php file.

'providers' => [
    ...,
    Yajra\DataTables\DataTablesServiceProvider::class,
]

'aliases' => [
    ...,
    'DataTables' => Yajra\DataTables\Facades\DataTables::class,
]

Configuration (Optional)

php artisan vendor:publish --provider="Yajra\DataTables\DataTablesServiceProvider"

And that's it! Start building out some awesome DataTables!

Debugging Mode

To enable debugging mode, just set APP_DEBUG=true and the package will include the queries and inputs used when processing the table.

IMPORTANT: Please make sure that APP_DEBUG is set to false when your app is on production.

PHP ARTISAN SERVE BUG

Please avoid using php artisan serve when developing with the package. There are known bugs when using this where Laravel randomly returns a redirect and 401 (Unauthorized) if the route requires authentication and a 404 NotFoundHttpException on valid routes.

It is advised to use Homestead or Valet when working with the package.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

Popular Laravel Projects
Popular Datatable Projects
Popular Frameworks Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Php
Laravel
Jquery
Datatables