Skip to content

Releases: laravie/html

v5.7.0

19 Feb 06:34
Compare
Choose a tag to compare

Changes

  • Update support to Laravel Framework 5.7.

v5.6.4

02 Aug 00:35
Compare
Choose a tag to compare

Changes

v5.6.3

24 May 02:22
Compare
Choose a tag to compare

Added

  • Added range(), week() and month() to FormBuilder.

Fixes

  • Fixes time() to accept DateTime instance.

v5.6.2

14 Apr 15:05
Compare
Choose a tag to compare

Fixes

  • Fix issue where defaults has a higher priority then the attributes. (@
    b3a1024
    )
  • Add missing Illuminate\Contracts\Support\Htmlable import. (@c1f1999)

v5.6.1

03 Apr 09:24
Compare
Choose a tag to compare

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

03 Apr 09:23
Compare
Choose a tag to compare

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

12 Feb 12:30
Compare
Choose a tag to compare

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\Request to be optional. (Victor Isadov)
  • Replace + operator with array_merge() method. (@izniburak)
  • Remove PHP_EOL statements from HTML output. (@nickurt)

v5.5.1

10 Feb 03:08
Compare
Choose a tag to compare

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\Request to be optional. (Victor Isadov)
  • Replace + operator with array_merge() method. (@izniburak)
  • Remove PHP_EOL statements from HTML output. (@nickurt)

v5.5.0

31 Aug 00:22
Compare
Choose a tag to compare

Changes

  • Update support to Laravel Framework 5.5.

v5.4.1

18 Jul 02:13
Compare
Choose a tag to compare

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().