zofe / datagrid
Simple datagrid / datatable presenter for eloquent/laravel
dev-master
2014-10-27 22:44 UTC
Requires
- php: >=5.3.2
- illuminate/support: ~4.1
- zofe/deficient: 1.0.*
This package is auto-updated.
Last update: 2024-11-05 02:13:03 UTC
README
DataGrid is a simple presenter widget for database queries, models, or any generic Array. By default it produce Bootstrap 3 compatible output.
At this moment is built on Deficient (a subset of laravel components including eloquent and blade, plus burp router). The plan is to make it compatible also with laravel, as standard package.
It can
- Paginate results
- Sort results
- Display results in a HTML Table (defining each column)
- Define each column, row and cell (sorting links, formatting, etc.)
- Customize view output including pagination style
- Export results as CSV / Excel
- Let you define url-semantic for sort/pagination segments or parameters (thanks to burp)
usage
$grid = DataGrid::source(new User); $grid->add('id','ID',true)->style('width:100px'); $grid->add('name','Name',true); $grid->paginate(5);
why not starting from laravel?
Because it can be used stand alone, and in any other framework.
It has really minimal dependencies.
Installation
install via composer
{
"require": {
"zofe/datagrid": "dev-master"
}
}
Setup
To configure database, views, you must reference to Deficient
This is a small how-to
- create minimum folders / configuration files
- deploy datagrid views
- deploy a front controller and a sample (optional, but suggested)
$ php vendor/zofe/deficient/deficient setup:folders
$ php vendor/zofe/datagrid/datagrid setup:views
$ php vendor/zofe/datagrid/datagrid setup:router