cherrypulp/laravel-datatable

This package is abandoned and no longer maintained. No replacement package was suggested.

A laravel datatable component helper

1.0.0 2019-12-26 15:26 UTC

This package is not auto-updated.

Last update: 2024-01-18 23:42:48 UTC


README

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.