2017 © Pedro PelĂĄez
 

library table

Table display helper

image

rocket/table

Table display helper

  • Saturday, January 2, 2016
  • by onigoetz
  • Repository
  • 1 Watchers
  • 0 Stars
  • 523 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 2 Forks
  • 1 Open issues
  • 2 Versions
  • 4 % Grown

The README.md

Tables

Latest Version Software License Build Status Coverage Status Quality Score Total Downloads, (*1)

This library is a helper to generate HTML tables from an array., (*2)

Install

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)

Testing

All the tests live in the main project., (*7)

Contributing

Please see CONTRIBUTING for details., (*8)

Credits

License

The MIT License (MIT). Please see License File for more information., (*9)

The Versions

02/01 2016

dev-master

9999999-dev

Table display helper

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

04/11 2014

dev-laravel4

dev-laravel4

Table display helper

  Sources   Download

The Requires

  • php >=5.4.0