lykegenes / laravel-datagrid-builder
Laravel datagrid generator - using jQuery-bootgrid
2.0.1
2016-02-24 17:26 UTC
Requires
- illuminate/http: ~5.1
- illuminate/support: ~5.1
Requires (Dev)
- illuminate/foundation: ^5.1.3
- mockery/mockery: 0.9.*
- orchestra/testbench: ~3.1
- phpunit/phpunit: ~5.2
- satooshi/php-coveralls: ~1.0
This package is auto-updated.
Last update: 2024-10-18 04:15:50 UTC
README
The package is a Laravel wrapper for Bootstrap Table JS library. It allows you to quickly build reusable Datatables in your frontend and bind your API as its data source. Notable features are Sorting, Searching, Hide/Show columns, Pagination, and personalized columns.
Install
Via Composer
composer require lykegenes/laravel-datagrid-builder
Then, add this to your Service Providers :
Lykegenes\DatagridBuilder\ServiceProvider::class,
...and this to your Aliases :
'DatagridBuilder' => Lykegenes\DatagridBuilder\Facades\DatagridBuilder::class,
Optionally, you can publish and edit the configuration file :
php artisan vendor:publish --provider="Lykegenes\DatagridBuilder\ServiceProvider" --tag=config
Usage
See the WIKI
Credits
License
The MIT License (MIT). Please see License File for more information.