Package Data | |
---|---|
Maintainer Username: | printempw |
Maintainer Contact: | aqangeles@gmail.com (Arjay Angeles) |
Package Create Date: | 2017-01-14 |
Package Last Update: | 2018-02-08 |
Home Page: | https://yajrabox.com/docs/laravel-datatables/6.0 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2025-01-25 15:20:22 |
Package Statistics | |
---|---|
Total Downloads: | 1,478 |
Monthly Downloads: | 3 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 1 |
Total Forks: | 0 |
Total Open Issues: | 0 |
This repository is a lite fork of yajra/laravel-datatables, which removed HTML builder, Excel/PDF/CSV exporting and so on. The lite version has no such huge dependencies.
This package is created to handle server-side works of DataTables jQuery Plugin via AJAX option by using Eloquent ORM, Fluent Query Builder or Collection.
use Yajra\Datatables\Facades\Datatables;
// Using Eloquent
return Datatables::eloquent(User::query())->make(true);
// Using Query Builder
return Datatables::queryBuilder(DB::table('users'))->make(true);
// Using Collection
return Datatables::collection(User::all())->make(true);
// Using the Engine Factory
return Datatables::of(User::query())->make(true);
return Datatables::of(DB::table('users'))->make(true);
return Datatables::of(User::all())->make(true);
composer require yajra/laravel-datatables-oracle:~6.0
Yajra\Datatables\DatatablesServiceProvider::class
Datatables
facade is automatically registered as an alias for Yajra\Datatables\Facades\Datatables
class.
$ php artisan vendor:publish --tag=datatables
And that's it! Start building out some awesome DataTables!
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.
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.