willwashburn / html-strap-php
Quickly make Bootstrap html elements from common data types in PHP
Installs: 2 543
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 4
Forks: 3
Open Issues: 0
Requires
- php: >=5.3.0
This package is auto-updated.
Last update: 2022-02-01 12:27:12 UTC
README
Quickly make Bootstrap html elements from common data types in PHP
$messages_table = new table($data) ->hide_columns('user_id','updated_at') ->rename_column('phone_number','Phone Number') ->add_delete_column('/message/remove/') ->condensed() ->striped(); echo $messages_table; // some bootstrapy table