Releases: Okipa/laravel-html-helper
Releases · Okipa/laravel-html-helper
2.0.0: Adding PHP 8 support (#4)
- Added PHP 8 support
- Removed Scrutinizer analysis
- Updated PHPCS checker and fixer norm to PSR-12
- Helpers naming breaking changes
👉 See the upgrade guide
1.4.0 (#3)
- Added support for Laravel 8.
- Dropped support for Laravel 5.8 and 6
- Dropped support for PHP 7.2 and 7.3
1.3.1
- Added testing files to .gitattributes export-ignore.
1.3.0
- Dropped support for Laravel 5.5, 5.6 and 5.7.
- Added support for Laravel 7.
1.2.0
- Added compatibility for Laravel 6.
- Dropped support for php 7.1.
1.1.1
- Fixed
htmlAttributes()
feature which was adding a space before the returned value, even if it was supposed to be an empty space.
1.1.0
classTag()
and htmlAttributes()
helpers are now callable directly after a html tag : they do add a space if the helper returns something and no space if nothing is returned.
<!-- Example -->
<div{{ classTag(<your dynamic classes>) }}></div>
1.0.5
- Updated treatment to return an empty string when the classes list to return is empty.
1.0.4
refactored HtmlAttributes class
1.0.3
improved classTag treatment