Looking to hire Laravel developers? Try LaraJobs

laravel-datatable maintained by cherrypulp

Description
A laravel datatable component helper
Author
Last update
2019/12/26 16:26 (1.0.0)
License
Links
Downloads
367

Comments
comments powered by Disqus

Laravel Datatable

Build Status styleci Scrutinizer Code Quality SensioLabsInsight Coverage Status

Packagist Packagist Packagist

This is a fork of Laravel Datatables (https://github.com/yajra/laravel-datatables)

Installation

Install via composer

composer require cherrypulp/laravel-datatable

Register Service Provider

Note! This and next step are optional if you use laravel>=5.5 with package auto discovery feature.

Add service provider to config/app.php in providers section

Cherrypulp\LaravelDatatable\ServiceProvider::class,

Register Facade

Register package facade in config/app.php in aliases section

Cherrypulp\LaravelDatatable\Facades\LaravelDatatable::class,

Publish Configuration File

php artisan vendor:publish --provider="Cherrypulp\LaravelDatatable\ServiceProvider" --tag="config"

Usage

For now it's just an adapter helper to load Laravel-Datatables and Laravel-Datatables-Oracle.

So for the documentation please check at :

See : https://laravel-datatables-docs.netlify.com/

Security

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

Credits

This package is bootstrapped with the help of blok/laravel-package-generator.