gloudemans / table-builder
A simple table builder
Requires
- php: >=5.3.0
- illuminate/support: ~4
Requires (Dev)
- symfony/css-selector: 2.3.*@dev
- symfony/dom-crawler: 2.5.*@dev
This package is auto-updated.
Last update: 2024-11-06 09:16:59 UTC
README
A simple table builder implementation. Build tables from from data. Accepted data is an array of:
- Arrays
- Objects
- Collections (Laravel Specific)
Installation
Install the package through Composer. Edit your project's composer.json
file by adding:
"require": { "gloudemans/tablebuilder": "dev-master" }
Next, run the Composer update command from the Terminal:
composer update
Laravel
If you want to use this package in your Laravel application all you have to do is add the service provider of the package and alias the package. To do this open your app/config/app.php
file.
Add a new line to the service providers
array:
'Gloudemans\TableBuilder\TableBuilderServiceProvider'
And finally add a new line to the aliases
array:
'Table' => 'Gloudemans\TableBuilder\Facades\Table',
Now you're ready to start using the table builder in your application.
Usage
Currently the package has only one public method, generate()
.
This method takes one mandatory and two optional arguments.
$builder->generate($data); // Generates a table with the specified data, headers will be the values keys of the data $builder->generate($data, $attributes); // Adds attributes to the `<table>` tag. (class, id, etc.) $builder->generate($data, $attributes, $headers); // Gives you the ability to specify the headers yourself.