Download the PHP package hnhdigital-os/laravel-html-generator without Composer
On this page you can find all versions of the php package hnhdigital-os/laravel-html-generator. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package laravel-html-generator
Laravel Html Generator
Create HTML tags and render them efficiently.
Extends upon Airmanbzh/php-html-generator with some Laravel related integration.
Overview
return HtmlTag::createElement();
// returns an empty HtmlTag Container
return HtmlTag::createElement('a');
// returns an HtmlTag containing a 'a' tag
Why you should use it
- it always generates valid HTML and XHTML code
- it makes templates cleaner
- it's easy to use and fast to execute
Render tags
echo(HtmlTag::createElement('a'));
Simple tags
echo $html->tag('div')
// <div></div>
echo(HtmlTag::createElement('p')->text('some content'));
// <p>some content</p>
Structured tags
echo(HtmlTag::createElement('div')->addElement('a')->text('a text'));
// <div><a>a text</a></div>
$container = HtmlTag::createElement('div');
$container->addElement('p')->text('a text');
$container->addElement('a')->text('a link');
// <div><p>a text</p><a>a link</a></div>
Attributes
Classics attributes (method : 'set')
$tag = $html->tag('a')
->set('href','./sample.php')
->set('id','myID')
->text('my link');
echo( $tag );
// <a href='./sample.php' id='myID'>my link</a>
ID (method : 'id')
$tag = $html->tag('div')
->id('myID');
echo( $tag );
// <div id='myID'>my link</a>
Class management (method : 'addClass'/'removeClass')
$tag = $html->tag('div')
->addClass('firstClass')
->addClass('secondClass')
->text('my content')
->removeClass('firstClass');
echo( $tag );
// <div class="secondClass">my content</div>
Contributing
Please see CONTRIBUTING for details.
Credits
License
The MIT License (MIT). Please see License File for more information.
All versions of laravel-html-generator with dependencies
PHP Build Version
Package Version
The package hnhdigital-os/laravel-html-generator contains the following files
Loading the files please wait ....