Releases: laravie/html
Releases · laravie/html
v5.7.0
v5.6.4
Changes
- Allow
Requestinstance to be optional. (@decadence) - Allow to set
classattributes usingiterabledata. (@ThunderBirdsX3) - Allow sub-select to accept
iterabledata. (@tautvydasr)
v5.6.3
v5.6.2
v5.6.1
Changes
- Validation in select field for boolean value of selected option. (@AndersonFriaca)
- Placeholder for select element is no longer hidden. (@ilyadrv)
Fixes
- Fix form method of hidden input '_method' is preserved on next request. (@tortuetorche)
- Fix bug with radio button not being checked. (@devinfd)
- Fix selected to check for using
Illuminate\Support\Collection::contains()whenever possible. (@VinceG)
v5.5.2
Changes
- Validation in select field for boolean value of selected option. (@AndersonFriaca)
Fixes
- Fix form method of hidden input '_method' is preserved on next request. (@tortuetorche)
- Fix selected to check for using
Illuminate\Support\Collection::contains()whenever possible. (@VinceG)
v5.6.0
Added
- Add
Collective\Html\FormBuilder::getModel()method. (@thetar)
Changes
- Update support to Laravel Framework 5.6.
- Use strict comparison to check selected values when building select options. (@muvasco)
- Form method of hidden input '_method' is preserved on next request. (@tortuetorche)
- Allows
Illuminate\Http\Requestto be optional. (Victor Isadov) - Replace
+operator witharray_merge()method. (@izniburak) - Remove
PHP_EOLstatements from HTML output. (@nickurt)
v5.5.1
Added
- Add
Collective\Html\FormBuilder::getModel()method. (@thetar)
Changes
- Use strict comparison to check selected values when building select options. (@muvasco)
- Form method of hidden input '_method' is preserved on next request. (@tortuetorche)
- Allows
Illuminate\Http\Requestto be optional. (Victor Isadov) - Replace
+operator witharray_merge()method. (@izniburak) - Remove
PHP_EOLstatements from HTML output. (@nickurt)
v5.5.0
v5.4.1
Added
- Add
Collective\Html\BladeServiceProvider. - Add
Collective\Html\FormBuilder::entities(). - Add support to build attributes from nested array.
- Add support for boolean type attributes.
Changes
- Call get model value attribute recursively to allow mutating form attribute in related models.
Removed
- Removed
Collective\Html\HtmlBuilder::escapeAll().