2017 © Pedro Peláez
 

library laravel-datatables-lite

A lite version of yajra/laravel-datatables, with HTML builders & exporting removed.

image

printempw/laravel-datatables-lite

A lite version of yajra/laravel-datatables, with HTML builders & exporting removed.

  • Thursday, February 8, 2018
  • by printempw
  • Repository
  • 1 Watchers
  • 0 Stars
  • 796 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 451 Forks
  • 0 Open issues
  • 3 Versions
  • 5 % Grown

The README.md

Attention!

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., (*1)

jQuery DataTables API for Laravel 4|5

Join the chat at https://gitter.im/yajra/laravel-datatables, (*2)

Laravel 4.2|5.x Latest Stable Version Build Status Scrutinizer Code Quality Total Downloads License, (*3)

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., (*4)

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);

Requirements

Documentations

Quick Installation

composer require yajra/laravel-datatables-oracle:~6.0, (*5)

Service Provider

Yajra\Datatables\DatatablesServiceProvider::class, (*6)

Facade

Datatables facade is automatically registered as an alias for Yajra\Datatables\Facades\Datatables class., (*7)

Configuration and Assets

$ php artisan vendor:publish --tag=datatables, (*8)

And that's it! Start building out some awesome DataTables!, (*9)

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., (*10)

IMPORTANT: Please make sure that APP_DEBUG is set to false when your app is on production., (*11)

Contributing

Please see CONTRIBUTING for details., (*12)

Security

If you discover any security related issues, please email aqangeles@gmail.com instead of using the issue tracker., (*13)

Credits

License

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

Buy me a coffee

  • Click here to lend your support to: Laravel Datatables and make a donation at pledgie.com !
  • Become a Patron

The Versions

08/02 2018

dev-master

9999999-dev

A lite version of yajra/laravel-datatables, with HTML builders & exporting removed.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel datatables laravel4 laravel5 datatable datatables jquery plugin

08/02 2018

v1.0.1

1.0.1.0

A lite version of yajra/laravel-datatables, with HTML builders & exporting removed.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel datatables laravel4 laravel5 datatable datatables jquery plugin

14/01 2017

v1.0.0

1.0.0.0

A lite version of yajra/laravel-datatables, with HTML builders & exporting removed.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel datatables laravel4 laravel5 datatable datatables jquery plugin