alex-oliveira / ao-html
Resources for HTML with Laravel 5.1 + Bootstrap 3
Installs: 30
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/alex-oliveira/ao-html
Requires
- php: >=5.5.9
- laravel/framework: 5.1.*
This package is auto-updated.
Last update: 2025-09-26 00:51:16 UTC
README
Resources for HTML with Laravel 5.1 + Bootstrap 3
1) Installation
$ composer require alex-oliveira/ao-html:dev-master
2) config/app.php
'providers' => [
/*
* Vendors Service Providers...
*/
AoHtml\HtmlServiceProvider::class,
],
'aliases' => [
/*
* Vendors Facades
*/
'Html' => AoHtml\HtmlFacade::class,
],
3) Template
Include package CSS in your template.
{!! html()->css() !!}
Include package JS in your template.
{!! html()->js() !!}
4) Elements
html()->tabs();
html()->tab();
html()->panels();
html()->panel();
html()->form();
html()->input();
html()->select();
html()->textarea();
html()->button();