| Package Data | |
|---|---|
| Maintainer Username: | alex-oliveira |
| Maintainer Contact: | bsi.alexoliveira@gmail.com (Alex Oliveira) |
| Package Create Date: | 2015-11-08 |
| Package Last Update: | 2015-11-25 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-11-02 03:01:05 |
| Package Statistics | |
|---|---|
| Total Downloads: | 30 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 0 |
| Total Watchers: | 1 |
| Total Forks: | 0 |
| Total Open Issues: | 0 |
Resources for HTML with Laravel 5.1 + Bootstrap 3
$ composer require alex-oliveira/ao-html:dev-master
'providers' => [
/*
* Vendors Service Providers...
*/
AoHtml\HtmlServiceProvider::class,
],
'aliases' => [
/*
* Vendors Facades
*/
'Html' => AoHtml\HtmlFacade::class,
],
Include package CSS in your template.
{!! html()->css() !!}
Include package JS in your template.
{!! html()->js() !!}
html()->tabs();
html()->tab();
html()->panels();
html()->panel();
html()->form();
html()->input();
html()->select();
html()->textarea();
html()->button();