Laravel DataTables generator/request handler.
414
6
3
Package Data
Maintainer Username: happyDemon
Maintainer Contact: maxim.kerstens@gmail.com (Maxim Kerstens)
Package Create Date: 2015-07-20
Package Last Update: 2016-10-28
Home Page: https://packagist.org/packages/dragonfly/lists
Language: JavaScript
License: MIT
Last Refreshed: 2024-04-10 03:00:48
Package Statistics
Total Downloads: 414
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 6
Total Watchers: 3
Total Forks: 0
Total Open Issues: 3

Lists

DragonFly\Lists is a Laravel 5 package that makes it easy to set up dataTables for you front-end code, as wel as handle the requests that it requires to retrieve data.

I've taken a similar approach to this problem as Laravel's own form Request's.

Installation

First run composer require:

composer require dragonfly/lists

Next open up app/config/app.php and add the serviceProvider:

'DragonFly\Lists\ServiceProvider',

Once that's done open up app/Http/Kernel.php, we'll need to add a trait to the class and a new property:

    use \DragonFly\Lists\Http\KernelTrait;
    
    /**
    * DataTable definitions (the key is used as a slug for routing)
    * 
    * @var array
    */
    protected $tables = [];

Lastly you'll create a new folder called Tables in app/Http and you're all set to go.

However if you'd like to make use of the config file & assets that comes bundled, you could run the following command in your terminal:

php artisan php artisan vendor:publish --provider="DragonFly\Lists\ServiceProvider" --tag="merge"

If you'd like to tweak the views or lang file you cn publish those using:

php artisan vendor:publish --provider="DragonFly\Lists\ServiceProvider" --tag="solid"

Features

  • Laravel 5 support
  • Supports both Eloquent and QueryBuilder as data source
  • Flexible rendering
  • Easily generate skeleton definition
  • Offers optional table bulk-actions
  • Full localisation support
  • Fully documented

Documentation

I've written down the documentation over at readme.io