dev-master
9999999-devTable display helper
MIT
The Requires
- php >=5.5.0
dev-laravel4
dev-laravel4Table display helper
The Requires
- php >=5.4.0
Table display helper
This library is a helper to generate HTML tables from an array., (*2)
Via Composer, (*3)
``` bash $ composer require rocket/table, (*4)
## Usage ``` php $heads = ['Title', 'Author']; $content = [ ['The book I didn\'t write', 'Not Me'] ['The book he wrote', 'It was me'] ]; echo Table::quick($heads, $content);
will produce, (*5)
html
<table class="table table-striped sticky-enabled">
<thead>
<tr><th>Title</th><th>Author</th></tr>
</thead>
<tbody>
<tr><td>The book I didn't write</td><td>Not Me</td></tr>
<tr><td>The book he wrote</td><td>It was me</td></tr>
</tbody>
</table>
, (*6)
All the tests live in the main project., (*7)
Please see CONTRIBUTING for details., (*8)
The MIT License (MIT). Please see License File for more information., (*9)
Table display helper
MIT
Table display helper